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

A066684
Numbers k such that prime(k) is congruent to sigma(k) (mod k), where prime(n) denotes the n-th prime.
0
1, 2, 4, 5, 181, 324, 1253, 252649, 69789901
OFFSET
1,2
COMMENTS
a(10) > 10^12. - Donovan Johnson, Mar 14 2010
EXAMPLE
prime(5) = 11 is congruent to sigma(5) = 6 (mod 5), so 5 is in the sequence.
MATHEMATICA
Select[ Range[ 1, 10^5 ], Mod[ DivisorSigma[ 1, # ], # ] == Mod[ Prime[ # ], # ] & ]
CROSSREFS
Sequence in context: A247963 A105288 A242915 * A328784 A128124 A182687
KEYWORD
nonn,hard,more
AUTHOR
Joseph L. Pe, Jan 11 2002
EXTENSIONS
a(9) from Donovan Johnson, Mar 14 2010
STATUS
approved