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!)
A345244 G.f. A(x) satisfies: A(x) = x + x^2 * exp(3 * Sum_{k>=1} (-1)^(k+1) * A(x^k) / k). 2
1, 1, 3, 6, 19, 57, 177, 586, 1950, 6642, 22990, 80400, 284346, 1014237, 3644841, 13185810, 47976382, 175458798, 644630064, 2378084209, 8805524949, 32714828733, 121917589291, 455625246297, 1707142362234, 6411576477380, 24133229559243, 91023263056629, 343964618949140, 1302098673500514 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
G.f.: x + x^2 * Product_{n>=1} (1 + x^n)^(3*a(n)).
a(n+2) = (3/n) * Sum_{k=1..n} ( Sum_{d|k} (-1)^(k/d+1) * d * a(d) ) * a(n-k+2).
MATHEMATICA
nmax = 30; A[_] = 0; Do[A[x_] = x + x^2 Exp[3 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] = (3/(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, 30}]
CROSSREFS
Sequence in context: A320174 A248603 A332344 * A052393 A024607 A186022
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 April 24 08:21 EDT 2024. Contains 371926 sequences. (Running on oeis4.)