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!)
A308271 G.f. A(x) satisfies: A(x) = (1/(1 - x)) * A(x^2)*A(x^3)*A(x^5)* ... *A(x^prime(k))* ... 2
1, 1, 2, 3, 5, 7, 12, 16, 24, 33, 48, 64, 93, 122, 169, 224, 303, 395, 532, 686, 907, 1168, 1523, 1943, 2521, 3193, 4094, 5170, 6573, 8245, 10434, 13015, 16344, 20321, 25363, 31379, 39003, 48039, 59384, 72914, 89720, 109722, 134528, 163929, 200149, 243199, 295831, 358280 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Euler transform of A008480.
LINKS
FORMULA
G.f.: Product_{k>=1} 1/(1 - x^k)^A008480(k).
MAPLE
g:= proc(n) option remember; (l-> add(i, i=l)!/
mul(i!, i=l))(map(i-> i[2], ifactors(n)[2]))
end:
a:= proc(n) option remember; `if`(n=0, 1, add(a(n-j)*
add(d*g(d), d=numtheory[divisors](j)), j=1..n)/n)
end:
seq(a(n), n=0..60); # Alois P. Heinz, May 17 2019
MATHEMATICA
terms = 47; A[_] = 1; Do[A[x_] = 1/(1 - x) Product[A[x^Prime[k]], {k, 1, terms}] + O[x]^(terms + 1) // Normal, terms + 1]; CoefficientList[A[x], x]
CROSSREFS
Sequence in context: A122622 A266775 A024790 * A360622 A275592 A319635
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 17 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 April 18 18:58 EDT 2024. Contains 371781 sequences. (Running on oeis4.)