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!)
A052075 Primes p such that nextprime(p) is substring of p^3. 6
11, 101, 2239, 34297, 43789, 53549, 535487, 59897017, 430784719, 2549592677, 2837138669, 97969345967, 100000000019, 328096840219, 4110739763869 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(16) > 6.9*10^12. - Giovanni Resta, Jul 02 2018
LINKS
MATHEMATICA
Select[Prime[Range[1, 10000]], StringContainsQ[ToString[#^3], ToString[NextPrime[#]]]&] (* Julien Kluge, Sep 19 2016 *)
Select[Prime[Range[45000]], SequenceCount[IntegerDigits[#^3], IntegerDigits[ NextPrime[ #]]]>0&] (* Requires Mathematica version 10 or later *) (* The program generates the first 7 terms of the sequence: to generate more, increase Range constant. *) (* Harvey P. Dale, Jan 25 2021 *)
PROG
(Python)
from itertools import count, islice
from sympy import prime, nextprime
def A052075_gen(): return filter(lambda p: str(nextprime(p)) in str(p**3), (prime(n) for n in count(1)))
A052075_list = list(islice(A052075_gen(), 3)) # Chai Wah Wu, Jan 20 2022
CROSSREFS
Sequence in context: A088292 A135563 A233432 * A070854 A075767 A292014
KEYWORD
nonn,base,more,nice
AUTHOR
Patrick De Geest, Jan 15 2000
EXTENSIONS
More terms from Sam Handler (sam_5_5_5_0(AT)yahoo.com), Sep 12 2006
Offset corrected by N. J. A. Sloane, Jul 13 2016
a(12)-a(15) from Giovanni Resta, Jul 02 2018
Definition clarified by Chai Wah Wu, Jan 20 2022
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 19 16:52 EDT 2024. Contains 371794 sequences. (Running on oeis4.)