The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A099080 Numbers n such that sigma(n).sigma(n-1) ... sigma(2).sigma(1) is prime (dot between numbers means concatenation). 3
2, 3, 66, 102 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Numbers of digits of primes corresponding to the four known terms of this sequence are respectively 2, 3, 133, and 232.
A naive heuristic suggests that this sequence is infinite but extremely sparse. - Charles R Greathouse IV, Nov 05 2013
There are no more terms below 10000. - Charles R Greathouse IV, Nov 09 2013
LINKS
Carlos Rivera, Puzzle 8. Primes by Listing, The Prime Puzzles & Problems connection.
Eric Weisstein's World of Mathematics, Integer Sequence Primes
EXAMPLE
3 is in the sequence because sigma(3).sigma(2).sigma(1) = 431 is prime.
MATHEMATICA
Module[{nn=110, d}, d=DivisorSigma[1, Range[nn]]; Select[Range[nn], PrimeQ[ FromDigits[ Flatten[IntegerDigits/@Reverse[Take[d, #]]]]]&]] (* Harvey P. Dale, Jul 25 2016 *)
PROG
(PARI) s="1"; for(n=2, 1e3, s=Str(sigma(n), s); if(ispseudoprime(eval(s)), print1(n", "))) \\ Charles R Greathouse IV, Nov 05 2013
CROSSREFS
Sequence in context: A356785 A015169 A041953 * A132532 A108023 A365289
KEYWORD
base,more,nonn
AUTHOR
Farideh Firoozbakht, Oct 23 2004
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 June 10 12:47 EDT 2024. Contains 373264 sequences. (Running on oeis4.)