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!)
A307975 G.f. A(x) satisfies: A(x) = x * exp(Sum_{k>=1} (A(x^k) + sigma(k)*x^k)/k). 1
0, 1, 2, 6, 17, 52, 161, 524, 1739, 5929, 20562, 72471, 258596, 932897, 3395922, 12459900, 46028216, 171056252, 639072199, 2398886256, 9042816457, 34217811625, 129926976921, 494892472911, 1890469032715, 7240573075556, 27799085344845, 106970043377619, 412474047216418 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f.: A(x) = Sum_{n>=1} a(n)*x^n = x * Product_{n>=1} 1/(1 - x^n)^(a(n)+1).
Recurrence: a(n+1) = (1/n) * Sum_{k=1..n} ( Sum_{d|k} d*(a(d) + 1) ) * a(n-k+1).
EXAMPLE
G.f.: A(x) = x + 2*x^2 + 6*x^3 + 17*x^4 + 52*x^5 + 161*x^6 + 524*x^7 + 1739*x^8 + 5929*x^9 + 20562*x^10 + ...
MATHEMATICA
terms = 28; A[_] = 0; Do[A[x_] = x Exp[Sum[(A[x^k] + DivisorSigma[1, k] x^k)/k, {k, 1, terms}]] + O[x]^(terms + 1) // Normal, terms + 1]; CoefficientList[A[x], x]
a[n_] := a[n] = SeriesCoefficient[x Product[1/(1 - x^k)^(a[k] + 1), {k, 1, n - 1}], {x, 0, n}]; Table[a[n], {n, 0, 28}]
CROSSREFS
Sequence in context: A186239 A148451 A148452 * A364329 A367056 A368598
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 08 2019
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 March 28 07:20 EDT 2024. Contains 371235 sequences. (Running on oeis4.)