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!)
A227237 G.f.: Sum_{n>=0} x^n / (1-x)^sigma(n). 2
1, 1, 2, 5, 12, 29, 71, 175, 438, 1125, 2961, 7887, 20949, 54892, 141198, 357068, 895592, 2267345, 5937586, 16445988, 48475348, 149753749, 472130021, 1482046059, 4556113875, 13598311459, 39278316217, 109829580639, 298021031162, 787853185200, 2039529355219, 5201580347276 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Here sigma(n) equals the sum of divisors of n (A000203).
LINKS
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 5*x^3 + 12*x^4 + 29*x^5 + 71*x^6 + 175*x^7 +...
where
A(x) = 1 + x/(1-x) + x^2/(1-x)^3 + x^3/(1-x)^4 + x^4/(1-x)^7 + x^5/(1-x)^6 + x^6/(1-x)^12 + x^7/(1-x)^8 + x^8/(1-x)^15 + x^9/(1-x)^13 + x^10/(1-x)^18 +...
PROG
(PARI) {a(n)=polcoeff(1+sum(m=1, n, x^m/(1-x+x*O(x^n))^sigma(m)), n)}
for(n=0, 40, print1(a(n), ", "))
CROSSREFS
Sequence in context: A054198 A054196 A131710 * A005593 A122745 A166292
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 03 2013
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 23 06:45 EDT 2024. Contains 371906 sequences. (Running on oeis4.)