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

A118507
Larger of two consecutive Sophie Germain primes with the same digital sum.
1
131, 509, 719, 761, 2693, 3593, 3821, 4019, 4073, 4391, 4409, 4481, 4733, 5171, 6131, 6263, 6581, 6761, 7121, 7541, 7841, 9473, 9629, 10163, 10253, 10271, 10331, 10709, 11831, 12653, 12671, 13229, 13553, 14081, 14153, 14249, 14321, 15773, 15791, 16253, 17291
OFFSET
1,1
LINKS
EXAMPLE
113 and 131 are consecutive Sophie Germain primes that have the same digital sum, hence 131 is in the sequence. - Michel Marcus, Dec 01 2013
MATHEMATICA
Select[Partition[{#, Total[IntegerDigits[#]]}&/@Select[Prime[Range[2000]], PrimeQ[ 2#+1]&], 2, 1], #[[1, 2]] == #[[2, 2]]&][[;; , 2, 1]] (* Harvey P. Dale, Feb 20 2023 *)
PROG
(PARI) lista(nn) = {lastsd = 0; forprime(p=2, nn, if (isprime(2*p+1), digs = digits(p); sd = sum(i=1, #digs, digs[i]); if (sd == lastsd, print1(p, ", ")); lastsd = sd; ); ); } \\ Michel Marcus, Dec 01 2013
CROSSREFS
Cf. A005384.
Sequence in context: A068680 A276255 A142555 * A105837 A142205 A142807
KEYWORD
base,nonn
AUTHOR
Luc Stevens (lms022(AT)yahoo.com), May 06 2006
EXTENSIONS
Missing term 6761 and more terms added by Michel Marcus, Dec 01 2013
STATUS
approved