login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A134532 Numbers n such that the sum of the digits of 5^n 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 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
5^2=25 and 2+5=7 is prime.
MAPLE
P:=proc(n) local cont, i, k, w; if isprime(n) then cont:=0; while cont<1000 do cont:=cont+1; w:=0; k:=n^cont; while k>0 do w:=w+k-(trunc(k/10)*10); k:=trunc(k/10); od; if isprime(w) then print(cont); fi; od; fi; end: P(5);
MATHEMATICA
a={}; For[n=1, n<200, n++, If[PrimeQ[Plus@@IntegerDigits[5^n]], AppendTo[a, n]]]; a (* Vincenzo Librandi, Apr 17 2013 *)
CROSSREFS
Sequence in context: A317185 A276005 A092058 * A282278 A268448 A230581
KEYWORD
easy,nonn,base
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)