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!)
A300632 Expansion of e.g.f. exp(x + Sum_{k>=2} prime(k-1)*x^k/k!). 8

%I #7 Mar 15 2018 12:30:58

%S 1,1,3,10,42,203,1119,6839,45895,334142,2619052,21946647,195537777,

%T 1843619725,18321431155,191242913022,2090436115146,23864653888881,

%U 283865214366771,3510656353388517,45056394441558593,599057016471131604,8238406603745152620,117020080948487107289

%N Expansion of e.g.f. exp(x + Sum_{k>=2} prime(k-1)*x^k/k!).

%C Exponential transform of A008578.

%H Alois P. Heinz, <a href="/A300632/b300632.txt">Table of n, a(n) for n = 0..534</a>

%H N. J. A. Sloane, <a href="/transforms.txt">Transforms</a>

%F E.g.f.: exp(Sum_{k>=1} A008578(k)*x^k/k!).

%e E.g.f.: A(x) = 1 + x/1! + 3*x^2/2! + 10*x^3/3! + 42*x^4/4! + 203*x^5/5! + 1119*x^6/6! + 6839*x^7/7! + ..

%p a:= proc(n) option remember; (p-> `if`(n=0, 1, add(a(n-j)*p(j)*

%p binomial(n-1, j-1), j=1..n)))(t-> `if`(t=1, 1, ithprime(t-1)))

%p end:

%p seq(a(n), n=0..25); # _Alois P. Heinz_, Mar 10 2018

%t nmax = 23; CoefficientList[Series[Exp[x + Sum[Prime[k - 1] x^k/k!, {k, 2, nmax}]], {x, 0, nmax}], x] Range[0, nmax]!

%t p[1] = 1; p[n_] := p[n] = Prime[n - 1]; a[n_] := a[n] = Sum[p[k] Binomial[n - 1, k - 1] a[n - k], {k, 1, n}]; a[0] = 1; Table[a[n], {n, 0, 23}]

%Y Cf. A000040, A007446, A008578, A023626, A030011, A030012, A030013, A030014, A030015, A030016.

%K nonn

%O 0,3

%A _Ilya Gutkovskiy_, Mar 10 2018

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 August 9 11:22 EDT 2024. Contains 375042 sequences. (Running on oeis4.)