login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A307725 G.f. A(x) satisfies: A(x) = x*exp(Sum_{n>=1} Sum_{k>=1} (-1)^(k+1)*n^k*a(n)^k*x^(n*k)/k). 1
0, 1, 1, 2, 8, 38, 234, 1670, 13730, 126050, 1286506, 14374806, 174922742, 2299332974, 32498831162, 491302184254, 7913576956058, 135291701108082, 2447171221364738, 46693007367175606, 937331324424610142, 19748487304680389214, 435735970210393888898, 10048153760813576981702 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
G.f.: A(x) = Sum_{n>=1} a(n)*x^n = x * Product_{n>=1} (1 + n*a(n)*x^n).
Recurrence: a(n+1) = -(1/n) * Sum_{k=1..n} ( Sum_{d|k} d*(-d*a(d))^(k/d) ) * a(n-k+1).
EXAMPLE
G.f.: A(x) = x + x^2 + 2*x^3 + 8*x^4 + 38*x^5 + 234*x^6 + 1670*x^7 + 13730*x^8 + 126050*x^9 + ...
MATHEMATICA
a[n_] := a[n] = SeriesCoefficient[x Exp[Sum[Sum[(-1)^(k + 1) j^k a[j]^k x^(j k)/k, {k, 1, n - 1}], {j, 1, n - 1}]], {x, 0, n}]; a[1] = 1; Table[a[n], {n, 0, 23}]
a[n_] := a[n] = SeriesCoefficient[x Product[(1 + k a[k] x^k), {k, 1, n - 1}], {x, 0, n}]; a[1] = 1; Table[a[n], {n, 0, 23}]
CROSSREFS
Sequence in context: A096654 A371312 A269509 * A308205 A191016 A293839
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 24 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 10:34 EDT 2024. Contains 371967 sequences. (Running on oeis4.)