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!)
A308272 G.f. A(x) satisfies: A(x) = (1 + x) * A(x^2)*A(x^3)*A(x^5)* ... *A(x^prime(k))* ... 2

%I #7 May 17 2019 22:08:11

%S 1,1,1,2,2,3,5,6,7,10,13,16,22,27,33,44,53,65,84,101,124,156,187,226,

%T 280,336,403,492,587,700,850,1008,1195,1435,1693,2004,2390,2808,3303,

%U 3910,4584,5372,6328,7387,8619,10106,11757,13675,15961,18508,21464,24948,28845,33345

%N G.f. A(x) satisfies: A(x) = (1 + x) * A(x^2)*A(x^3)*A(x^5)* ... *A(x^prime(k))* ...

%C Weigh transform of A008480.

%F G.f.: Product_{k>=1} (1 + x^k)^A008480(k).

%p g:= proc(n) option remember; (l-> add(i, i=l)!/

%p mul(i!, i=l))(map(i-> i[2], ifactors(n)[2]))

%p end:

%p b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,

%p add(binomial(g(i), j)*b(n-i*j, i-1), j=0..n/i)))

%p end:

%p a:= n-> b(n$2):

%p seq(a(n), n=0..60); # _Alois P. Heinz_, May 17 2019

%t terms = 53; A[_] = 1; Do[A[x_] = (1 + x) Product[A[x^Prime[k]], {k, 1, terms}] + O[x]^(terms + 1) // Normal, terms + 1]; CoefficientList[A[x], x]

%Y Cf. A000040, A008480, A129373, A308271.

%K nonn

%O 0,4

%A _Ilya Gutkovskiy_, May 17 2019

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 26 07:07 EDT 2024. Contains 371990 sequences. (Running on oeis4.)