A321663 a(n) = prime(n)^prime(n+2).
32, 2187, 48828125, 96889010407, 505447028499293771, 1461920290375446110677, 19967568900859523802559065713, 12129821994589221844500501021364910179, 1635170022196481349560959748587682926364327, 1284475787728524720826927656893473276744000042113841709
Offset: 1
Examples
a(3)=48828125 because 5 is the 3rd prime, 11 is the 5th prime and 5^11=48828125.
Programs
-
Mathematica
Array[Prime[#]^Prime[# + 2] &, 10] (* Michael De Vlieger, Nov 25 2018 *) #[[1]]^#[[3]]&/@Partition[Prime[Range[20]],3,1] (* Harvey P. Dale, Jun 20 2023 *)
Formula
a(n) = prime(n)^prime(n+2).