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”).

A075296
Interprimes (A024675) which are of the form s*prime, s=21.
24
42, 105, 231, 399, 483, 861, 987, 1113, 1281, 1491, 1869, 2121, 2247, 2667, 2751, 3129, 3423, 5649, 5691, 5817, 7539, 8169, 8421, 8589, 9807, 10563, 10689, 10983, 11361, 13881, 14511, 14889, 15519, 17031, 17409, 18627, 19761, 20391, 21189
OFFSET
1,1
COMMENTS
Interprimes of the form s*prime are in A075277-A075296 ( s = 2 - 21 ). Case s=1 is impossible.
LINKS
EXAMPLE
231 is an interprime and 231/21 = 11 is prime.
MATHEMATICA
s=21; Select[Table[(Prime[n+1]+Prime[n])/2, {n, 2, 14000}], PrimeQ[ #/s]&]
PROG
(PARI) first(n, {m=21}) = {my(res = List(), p); forprime(p=2, oo, if(precprime(m*p) + nextprime(m*p) == 2*m*p, listput(res, m*p); if(#res>=n, return(res))))} \\ David A. Corneth, Jul 26 2017
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Zak Seidov, Sep 12 2002
STATUS
approved