login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A064811
a(n) = Sum_{k=1..n} binomial(prime(n),k).
1
2, 6, 25, 98, 1023, 4095, 41225, 169765, 1698159, 36519555, 160645503, 3231947595, 30273024983, 138712176295, 1310535994367, 24708300742602, 445940506273291, 2153773851389587, 38488228121936551, 357912185755244035
OFFSET
1,1
LINKS
MATHEMATICA
Table[Sum[Binomial[Prime[n], k], {k, n}], {n, 20}] (* Harvey P. Dale, Jul 20 2019 *)
PROG
(PARI) { for (n=1, 100, p=prime(n); a=sum(k=1, n, binomial(p, k)); write("b064811.txt", n, " ", a) ) } \\ Harry J. Smith, Sep 26 2009
(PARI) a(n) = sum(k=1, n, binomial(prime(n), k)); \\ Michel Marcus, Jun 19 2018
CROSSREFS
Sequence in context: A019048 A289604 A028302 * A074418 A330637 A003454
KEYWORD
nonn
AUTHOR
Santi Spadaro, Oct 22 2001
STATUS
approved