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!)
A069324 Primes in A068949. 4
13, 19, 31, 43, 61, 67, 73, 79, 97, 103, 109, 127, 139, 157, 163, 181, 193, 199, 211 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Differs from A040047 at the 13th term. - Kevin Buzzard (k.buzzard(AT)imperial.ac.uk), Jun 20 2008
LINKS
EXAMPLE
a(4)=43 since the fourth prime in A068949 is 43.
PROG
(PARI) disum(n)= { local(resul) ; resul=0 ; while(n>0, resul += n%10 ; n = (n-n%10)/10 ; ) ; return(resul) ; } A069324(maxs)= { local(ssqu, su) ; su=1 ; for(s=1, maxs, ssqu=s^2 ; if (disum(ssqu) > su, su=disum(ssqu) ; if( isprime(su), print1(su, ", ") ; ) ; ) ; ) ; } A069324(200000000) ; - R. J. Mathar, May 19 2006
CROSSREFS
Sequence in context: A358530 A164333 A182365 * A040047 A163847 A051644
KEYWORD
more,nonn,base
AUTHOR
Francois Jooste (phukraut(AT)hotmail.com), Mar 15 2002
EXTENSIONS
a(12) from R. J. Mathar, May 19 2006
a(13)-a(14) from Kevin Buzzard (k.buzzard(AT)imperial.ac.uk), Jun 20 2008
a(15)-a(19) from Giovanni Resta, Jun 27 2018
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 05:18 EDT 2024. Contains 371964 sequences. (Running on oeis4.)