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!)
A014352 Four-fold exponential convolution of primes with themselves. 5

%I #16 Jun 05 2018 07:31:45

%S 16,96,592,3680,22888,141776,872296,5320160,32116168,191634736,

%T 1128985544,6560592320,37577101096,212032652336,1178400630472,

%U 6450745788064,34795044655624,185041871051312,971039709861320,5033044804735360,25793494764933224,130834363186542320

%N Four-fold exponential convolution of primes with themselves.

%H Alois P. Heinz, <a href="/A014352/b014352.txt">Table of n, a(n) for n = 0..1000</a>

%F E.g.f.: (Sum_{k>=0} prime(k+1)*x^k/k!)^4. - _Ilya Gutkovskiy_, Mar 10 2018

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

%p ithprime(n+1), add(b(j, floor(k/2))*

%p b(n-j, ceil(k/2))*binomial(n, j), j=0..n))

%p end:

%p a:= n-> b(n, 4):

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

%t b[n_, k_] := b[n, k] = If[k == 1, Prime[n + 1], Sum[b[j, Floor[k/2]] b[n - j, Ceiling[k/2]] Binomial[n, j], {j, 0, n}]];

%t a[n_] := b[n, 4];

%t Table[a[n], {n, 0, 30}] (* _Jean-François Alcover_, Jun 05 2018, after _Alois P. Heinz_ *)

%Y Cf. A000040, A014345, A014347.

%K nonn

%O 0,1

%A _N. J. A. Sloane_

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 25 13:38 EDT 2024. Contains 371970 sequences. (Running on oeis4.)