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!)
A340990 a(n) is the (2n)-th term of the n-fold self-convolution of the primes. 3
1, 3, 29, 291, 3121, 34123, 379853, 4280251, 48681569, 557686227, 6425630909, 74384480019, 864461820049, 10079577033243, 117859582680813, 1381492094548651, 16227770995740865, 190979248798795427, 2251327736286726749, 26579050506578504195, 314212180691846338801 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = [x^(2n)] (Sum_{j>=1} prime(j)*x^j)^n.
a(n) = A340991(2n,n).
MAPLE
b:= proc(n, k) option remember; `if`(k=0, 1, `if`(k=1, ithprime(n+1),
(q-> add(b(j, q)*b(n-j, k-q), j=0..n))(iquo(k, 2))))
end:
a:= n-> b(n$2):
seq(a(n), n=0..23);
MATHEMATICA
b[n_, k_] := b[n, k] = If[k == 0, 1, If[k == 1, Prime[n + 1], With[{q = Quotient[k, 2]}, Sum[b[j, q] b[n - j, k - q], {j, 0, n}]]]];
a[n_] := b[n, n];
a /@ Range[0, 23] (* Jean-François Alcover, Feb 04 2021, after Alois P. Heinz *)
CROSSREFS
Sequence in context: A140780 A268493 A002669 * A112711 A155651 A268020
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Feb 01 2021
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 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)