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!)
A345245 G.f. A(x) satisfies: A(x) = x + x^2 * exp(4 * Sum_{k>=1} (-1)^(k+1) * A(x^k) / k). 2
1, 1, 4, 10, 36, 135, 504, 2000, 8072, 33099, 138132, 582930, 2485412, 10692219, 46340984, 202175344, 887175352, 3913032212, 17338327848, 77141235796, 344491008296, 1543591834950, 6937783312048, 31270131096820, 141305878384704, 640065923118435, 2905664234243052, 13217615913137250 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
G.f.: x + x^2 * Product_{n>=1} (1 + x^n)^(4*a(n)).
a(n+2) = (4/n) * Sum_{k=1..n} ( Sum_{d|k} (-1)^(k/d+1) * d * a(d) ) * a(n-k+2).
MATHEMATICA
nmax = 28; A[_] = 0; Do[A[x_] = x + x^2 Exp[4 Sum[(-1)^(k + 1) A[x^k]/k, {k, 1, nmax}]] + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] // Rest
a[1] = a[2] = 1; a[n_] := a[n] = (4/(n - 2)) Sum[Sum[(-1)^(k/d + 1) d a[d], {d, Divisors[k]}] a[n - k], {k, 1, n - 2}]; Table[a[n], {n, 1, 28}]
CROSSREFS
Sequence in context: A149184 A149185 A149186 * A197552 A052572 A079725
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jun 11 2021
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 12 19:26 EDT 2024. Contains 375113 sequences. (Running on oeis4.)