login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A238302
E.g.f. satisfies: A'(x) = 1/(1 - x*A(x))^3 with A(0)=1
3
1, 1, 3, 18, 159, 1872, 27585, 488736, 10122273, 240029568, 6413759739, 190698235200, 6244960476447, 223354435468032, 8662843993599081, 362162307560207616, 16235331377066437185, 776899798554908971008, 39526189786699908619635, 2130538920122365706916864
OFFSET
0,3
LINKS
FORMULA
a(n) ~ c * n! * d^n / n^(5/4), where c = 0.502313... and d = 3.03113979...
PROG
(PARI) {a(n)=local(A=1+x); for(i=0, n, A=1+intformal(1/(1-x*A+x*O(x^n))^3 )); n!*polcoeff(A, n)}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Sequence in context: A089901 A375879 A352638 * A371020 A067302 A361048
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Feb 24 2014
STATUS
approved