A384622 G.f. A(x) satisfies A(x) = 1/( 1 - x*A(x) * A(x*A(x))^5 ).
1, 1, 7, 75, 989, 14822, 242833, 4253818, 78573475, 1516124048, 30358711661, 627789264431, 13357722853019, 291611321803145, 6517101781199460, 148833150175812360, 3468184751644757228, 82363850033966966043, 1991430772785525516280, 48980124394583747435367
Offset: 0
Keywords
Programs
-
PARI
a(n, k=1) = if(k==0, 0^n, k*sum(j=0, n, binomial(n+j+k, j)/(n+j+k)*a(n-j, 5*j)));
Formula
See A384623.