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

A166851
Numbers k such that reversal(k!+k) is prime.
0
1, 5, 37, 857, 2566
OFFSET
1,2
COMMENTS
It's obvious that 1 is the only number k such that k!+k is prime.
There is no further term up to 5000.
There is no further term up to 25000. - Michael S. Branicky, Nov 14 2024
EXAMPLE
37!+37 = 13763753091226345046315979581580902400000037 and reversal(37!+37) =
73000000420908518597951364054362219035736731 is prime, so 37 is in the sequence.
MATHEMATICA
reversal[n_]:=FromDigits[Reverse[IntegerDigits[n]]];
Do[If[PrimeQ[reversal[n!+n]], Print[n]], {n, 5000}]
CROSSREFS
Sequence in context: A257952 A240186 A003213 * A090439 A089795 A081971
KEYWORD
base,hard,more,nonn
AUTHOR
Farideh Firoozbakht, Oct 22 2009
STATUS
approved