login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A072673
Primes of form prime(n)*prime(2*n)+prime(n)+prime(2*n).
3
11, 31, 83, 359, 1487, 4283, 4751, 5471, 7127, 12527, 41183, 66863, 71339, 85247, 186119, 274223, 290987, 338687, 373859, 386219, 400679, 465299, 490643, 663407, 720791, 827147, 883739, 1096127, 1124603
OFFSET
1,1
LINKS
EXAMPLE
A000040(236) = 1487 = 1403+23+61 = 23*61+23+61 = A000040(9)*A000040(18)+A000040(9)+A000040(18), therefore 1487 is a term.
MATHEMATICA
p[n_]:=Module[{p1=Prime[n], p2=Prime[2n]}, p1*p2+p1+p2]; Select[ Array[ p, 200], PrimeQ] (* Harvey P. Dale, Jul 14 2014 *)
CROSSREFS
Sequence in context: A038768 A269789 A072672 * A250461 A259508 A126365
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Jun 30 2002
STATUS
approved