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!)
A345242 G.f. A(x) satisfies: A(x) = x + x^2 * exp(4 * Sum_{k>=1} A(x^k) / k). 2
1, 1, 4, 14, 52, 205, 832, 3492, 14960, 65322, 289384, 1298064, 5882712, 26897352, 123919576, 574718308, 2681028168, 12571650355, 59222213028, 280139215118, 1330101884932, 6336757979653, 30282375754944, 145124083402256, 697293746743760, 3358385599930269, 16210842955175380 (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} d * a(d) ) * a(n-k+2).
MATHEMATICA
nmax = 27; A[_] = 0; Do[A[x_] = x + x^2 Exp[4 Sum[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[d a[d], {d, Divisors[k]}] a[n - k], {k, 1, n - 2}]; Table[a[n], {n, 1, 27}]
CROSSREFS
Sequence in context: A052710 A364410 A262594 * A370891 A284765 A129997
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 9 20:04 EDT 2024. Contains 375044 sequences. (Running on oeis4.)