A160501 (n+1)^prime(n+1) + n^prime(n).
9, 251, 16627, 48844509, 13109522141, 232643574681223, 144347818589843079, 8863082234840576951801, 100000008862938119652501095929, 192043424957750480504146841291811
Offset: 1
Keywords
Examples
For n = 3, 4^7 + 3^5 = 16627, the 3rd entry in the sequence.
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..95
- C. L. Hilliard,Sum of prime indices to respective primes
Crossrefs
Cf. A160491.
Programs
-
Mathematica
Table[n^Prime[n]+(n+1)^Prime[n+1],{n,10}] (* Harvey P. Dale, Sep 10 2016 *) Total/@Partition[Table[n^Prime[n] ,{n,15}],2,1] (* Harvey P. Dale, Sep 22 2020 *)
-
PARI
ppower(n) = { for(x=1,n, y=(x+1)^prime(x+1) + x^prime(x); print1(y", ") ); }
Extensions
Edited by R. J. Mathar, May 30 2009
Comments