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!)
A099078 Numbers k such that pi(k).pi(k-1) ... pi(3).pi(2) is prime (dot between numbers means concatenation). 3
5, 22, 48, 317, 734, 5235, 12377 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Number of digits of primes corresponding to the five known terms of this sequence are respectively 4, 21, 67, 605, 1633.
LINKS
Carlos Rivera, Puzzle 8. Primes by Listing, The Prime Puzzles & Problems connection.
Eric Weisstein's World of Mathematics, Integer Sequence Primes
EXAMPLE
5 is in the sequence because pi(5).pi(4).pi(3).pi(2) = 3221 is prime.
MAPLE
r:= 1: v:= 1: Res:= NULL:
for k from 3 to 6000 do
if isprime(k) then r:= r+1 fi;
v:= v + r*10^(1+ilog10(v));
if isprime(v) then Res:= Res, k fi
od:
Res; # Robert Israel, Nov 20 2018
MATHEMATICA
s = ""; Do[s = ToString[PrimePi[n]] <> s; k = ToExpression[s]; If[PrimeQ[k], Print[n]], {n, 2, 5235}] (* Ryan Propper, Aug 30 2005 *)
CROSSREFS
Sequence in context: A082005 A273024 A273121 * A272836 A273575 A272848
KEYWORD
base,more,nonn
AUTHOR
Farideh Firoozbakht, Oct 23 2004
EXTENSIONS
a(6) from Ryan Propper, Aug 30 2005
a(7) from Michael S. Branicky, Apr 29 2023
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 16 01:01 EDT 2024. Contains 371696 sequences. (Running on oeis4.)