Skip to content

Commit

Permalink
add pari test case
Browse files Browse the repository at this point in the history
  • Loading branch information
ckrause committed Oct 24, 2024
1 parent e272450 commit e350c29
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/formula/pari-vector.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
A000023: a[n+1] = if(n==3,-2,if(n==2,2,if(n==1,-1,if(n==0,1,(n-1)*(2*a[n-1]+a[n])-a[n]))))
A000032: a[n+1] = if(n==2,3,if(n==1,1,if(n==0,2,a[n-1]+a[n])))
A000058: b[n+1] = if(n==0,1,b[n]*(b[n]+1)); a[n+1] = b[n+1]+1
A000178: b[n+1] = if(n==2,6,if(n==1,2,if(n==0,1,b[n]*(n+1)))); a[n+1] = if(n==2,2,if(n==1,1,if(n==0,1,b[n]*a[n])))

0 comments on commit e350c29

Please sign in to comment.