A251720 a(n) = (p_n)^2 * p_{n+1}, where p_n is the n-th prime, A000040(n).
12, 45, 175, 539, 1573, 2873, 5491, 8303, 15341, 26071, 35557, 56129, 72283, 86903, 117077, 165731, 212341, 249307, 318719, 367993, 420991, 518003, 613121, 768337, 950309, 1050703, 1135163, 1247941, 1342553, 1621663, 2112899, 2351057, 2608891, 2878829, 3352351
Offset: 1
Keywords
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
a251720[n_Integer] := Prime[#]^2*Prime[# + 1] & /@ Range[n]; a251720[35] (* Michael De Vlieger, Dec 14 2014 *) #[[1]]^2 #[[2]]&/@Partition[Prime[Range[40]],2,1] (* Harvey P. Dale, Mar 12 2015 *)
Comments