A078422 a(n) = prime(n+1)^prime(n).
9, 125, 16807, 19487171, 1792160394037, 9904578032905937, 5480386857784802185939, 74615470927590710561908487, 4316720717749415770740818372739989
Offset: 1
Keywords
Examples
a(7) = 17^13 = 5480386857784802185939.
Programs
-
Mathematica
Table[Prime[n+1]^Prime[n], {n, 1, 10}] (* Vaclav Kotesovec, Jan 25 2016 *) #[[2]]^#[[1]]&/@Partition[Prime[Range[10]],2,1] (* Harvey P. Dale, Oct 16 2023 *)