login
A357517
Primes that are the average of two consecutive primorial numbers A002110 plus one.
0
5, 19, 270271, 5105101, 103515091681, 3810649312471, 155835500831011, 313986271960080721, 282899575838889614011647241, 113405858671385228324474555982803921209616373612841704311161, 2900763693484834576932132901212043025388720793126978148639249341
OFFSET
1,1
COMMENTS
a(n) ends with digit 1, for n > 2.
EXAMPLE
19 is a term since primorials A002110(2) = 6 and A002110(3) = 30 which give (6 + 30)/2 + 1 = 19 which is prime.
MATHEMATICA
primorial[n_] := Times@@Table[Prime[k], {k, 1, n}]; Table[If[PrimeQ[(primorial[n] + primorial[n+1])/2 + 1], (primorial[n] + primorial[n+1])/2 + 1, Nothing], {n, 1, 40}]
CROSSREFS
Sequence in context: A270486 A278562 A013531 * A122152 A104314 A302662
KEYWORD
nonn
AUTHOR
Nicholas Leonard, Oct 01 2022
STATUS
approved