OFFSET
1,1
COMMENTS
p and p+16 are not necessarily consecutive primes: (1831, 1847) is the first pair of consecutive primes that belongs to the sequence.
LINKS
Seiichi Manyama, Table of n, a(n) for n = 1..10000
FORMULA
a(2n+1) = A049488(n+1).
EXAMPLE
The prime pairs are (3, 19), (7, 23), (13, 29) etc.
MATHEMATICA
Flatten[{#, # + 16}&/@Select[Prime[Range[200]], PrimeQ[# + 16] &]]
PROG
(Magma) &cat [[p, p+16]: p in PrimesUpTo(1000) | IsPrime(p+16)];
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, May 07 2016
STATUS
approved