OFFSET
1,1
COMMENTS
First five elements are also consecutive members of A133018. - Omar E. Pol, Oct 20 2011
Third diagonal of A319075. - Omar E. Pol, Sep 13 2018
LINKS
Bruno Berselli, Table of n, a(n) for n = 1..50
FORMULA
a(n) = A000040(n)^(n+1). - Omar E. Pol, Oct 20 2011
EXAMPLE
The fourth prime number is 7, so a(4) = 7^(4+1) = 7^5 = 16807. - Omar E. Pol, Oct 20 2011
MATHEMATICA
Table[Prime[n]^(n+1), {n, 20}] (* Harvey P. Dale, Dec 16 2012 *)
PROG
(PARI) for(n=1, 16, print1(prime(n)^(n+1)", "));
(Magma) [NthPrime(n)^(n+1): n in [1..16]];
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Bruno Berselli, Oct 20 2011
STATUS
approved