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”).

A061028
a(n) = n^p - (n-1)^p, where p is the n-th prime.
1
1, 7, 211, 14197, 44633821, 11839990891, 215703854542471, 132716292890482729, 8272642309293795444217, 95289871302753755165078396311, 181943424957750480504146841291811
OFFSET
1,2
LINKS
PROG
for(n=1, 20, print1(n^prime(n)-(n-1)^prime(n)", "))
(PARI) { n=0; forprime (p=2, prime(95), write("b061028.txt", n++, " ", n^p - (n - 1)^p); ) } \\ Harry J. Smith, Jul 17 2009
CROSSREFS
Sequence in context: A241649 A256288 A302107 * A012862 A045760 A046033
KEYWORD
nonn
AUTHOR
Jason Earls, May 25 2001
EXTENSIONS
More terms from Ralf Stephan, Mar 31 2003
Offset changed from 0 to 1 by Harry J. Smith, Jul 17 2009
STATUS
approved