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

A134532
Numbers k such that the sum of the digits of 5^k is prime.
4
1, 2, 4, 5, 6, 7, 13, 19, 20, 22, 26, 27, 29, 33, 34, 36, 41, 43, 44, 50, 54, 55, 58, 59, 60, 66, 69, 70, 74, 75, 81, 85, 91, 95, 97, 99, 100, 101, 110, 112, 125, 127, 129, 131, 133, 134, 136, 142, 143, 145, 146, 148, 153, 156, 157, 163, 165, 178, 187, 189, 190, 196
OFFSET
1,2
LINKS
EXAMPLE
5^2=25 and 2+5=7 is prime.
MAPLE
P:=proc(k) if isprime(convert(convert(5^k, base, 10), `+`)) then k; fi; end: seq(P(n), n=1..200);
MATHEMATICA
a={}; For[n=1, n<200, n++, If[PrimeQ[Plus@@IntegerDigits[5^n]], AppendTo[a, n]]]; a (* Vincenzo Librandi, Apr 17 2013 *)
CROSSREFS
KEYWORD
easy,nonn,base
AUTHOR
EXTENSIONS
Corrected name and new Maple code by_Paolo P. Lava_, Jun 24 2024
STATUS
approved