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!)
A345243 G.f. A(x) satisfies: A(x) = x + x^2 * exp(2 * Sum_{k>=1} (-1)^(k+1) * A(x^k) / k). 2
1, 1, 2, 3, 8, 17, 42, 107, 272, 719, 1914, 5163, 14088, 38733, 107370, 299511, 840372, 2370020, 6714316, 19100096, 54534696, 156230943, 448942998, 1293692305, 3737568960, 10823759093, 31413810702, 91358248179, 266193726712, 776989772307, 2271695757714, 6652074198889 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
G.f.: x + x^2 * Product_{n>=1} (1 + x^n)^(2*a(n)).
a(n+2) = (2/n) * Sum_{k=1..n} ( Sum_{d|k} (-1)^(k/d+1) * d * a(d) ) * a(n-k+2).
MATHEMATICA
nmax = 32; A[_] = 0; Do[A[x_] = x + x^2 Exp[2 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] = (2/(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, 32}]
CROSSREFS
Sequence in context: A099965 A319566 A294450 * A292852 A148014 A148015
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 1 10:18 EDT 2024. Contains 374816 sequences. (Running on oeis4.)