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!)
A345241 G.f. A(x) satisfies: A(x) = x + x^2 * exp(3 * Sum_{k>=1} A(x^k) / k). 2
1, 1, 3, 9, 28, 93, 315, 1109, 3969, 14505, 53726, 201588, 764001, 2921730, 11257881, 43669590, 170383933, 668236581, 2632898016, 10416893159, 41368099791, 164841324837, 658883345595, 2641064296638, 10613953319448, 42757746556377, 172628891937513, 698398635475974 (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} d * a(d) ) * a(n-k+2).
MATHEMATICA
nmax = 28; A[_] = 0; Do[A[x_] = x + x^2 Exp[3 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] = (3/(n - 2)) Sum[Sum[d a[d], {d, Divisors[k]}] a[n - k], {k, 1, n - 2}]; Table[a[n], {n, 1, 28}]
CROSSREFS
Sequence in context: A368288 A131203 A191637 * A238978 A081914 A361763
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 25 04:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)