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!)
A363385 G.f. A(x) satisfies: A(x) = x + x^2 * exp( Sum_{k>=1} A(x^k)^2 / k ). 1
1, 1, 0, 1, 2, 2, 4, 11, 14, 29, 66, 115, 222, 493, 944, 1884, 4020, 8175, 16618, 35198, 73220, 151844, 321036, 676778, 1421828, 3016813, 6407344, 13589888, 28962702, 61853827, 132073646, 282752030, 606492428, 1301587833, 2797816706, 6023460551, 12978238202, 27995493484 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,5
LINKS
MATHEMATICA
nmax = 38; A[_] = 0; Do[A[x_] = x + x^2 Exp[Sum[A[x^k]^2/k, {k, 1, nmax}]] + O[x]^(nmax + 1)//Normal, nmax + 1]; CoefficientList[A[x], x] // Rest
a[1] = a[2] = 1; g[n_] := g[n] = Sum[a[k] a[n - k], {k, 1, n - 1}]; a[n_] := a[n] = (1/(n - 2)) Sum[Sum[d g[d], {d, Divisors[k]}] a[n - k], {k, 1, n - 2}]; Table[a[n], {n, 1, 38}]
PROG
(PARI) seq(n)=my(p=x+x^2+O(x^3)); for(n=1, n\2, my(m=serprec(p, x)-1); p = x + x^2*exp(sum(k=1, m\2, subst(p + O(x^(m\k+1)), x, x^k)^2/k))); Vec(p + O(x*x^n)) \\ Andrew Howroyd, May 30 2023
CROSSREFS
Sequence in context: A220800 A220786 A280673 * A280531 A072074 A052338
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 30 2023
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 August 21 15:15 EDT 2024. Contains 375353 sequences. (Running on oeis4.)