A359722 a(n) = A359720(3*n+1,2*n) for n >= 0.
1, 9, 54, 269, 1254, 5642, 24828, 107613, 461318, 1961102, 8282196, 34792914, 145527004, 606473844, 2519619640, 10440010845, 43158028230, 178049440230, 733229991780, 3014712182790, 12377406450420, 50751988872780, 207859022097480, 850399040956530, 3475797671194524
Offset: 0
Keywords
Programs
-
PARI
/* a(n) = A359720(3*n+1,2*n) */ {a(n) = my(A=[1]); for(i=1, 3*n+1, A=concat(A, 0); A[#A] = polcoeff(x - sum(m=-#A, #A, (-1)^m * x^m * (y + x^m +x*O(x^#A) )^m * Ser(A)^m ), #A-1) ); polcoeff( polcoeff(Ser(A), 3*n+1,x), 2*n,y)} for(n=0, 30, print1(a(n), ", "))
Comments