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!)
A371865 Primes whose second to ninth digits are 23456789. 1
623456789, 1234567891, 2234567891, 2234567893, 2234567897, 3234567893, 7234567891, 12345678923, 12345678929, 12345678949, 22345678907, 22345678913, 22345678933, 22345678963, 22345678967, 22345678981, 32345678929, 32345678933, 32345678951, 32345678957, 42345678901, 42345678911, 42345678937, 42345678941 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MAPLE
R:= 623456789: count:= 1:
for d from 0 while count < 100 do
for a from 1 to 9 while count < 100 do
for b from 1 to 10^d-1 by 2 while count < 100 do
x:= b + 10^d*(23456789 + 10^8*a);
if isprime(x) then
count:= count+1; R:= R, x;
fi
od od od:
R;
PROG
(Python)
from itertools import count, islice
from sympy import primerange
def A371865_gen(): # generator of terms
for l in count(0):
m = 10**l
for a in range(1, 10):
b = (a*10**8+23456789)*m
yield from primerange(b, b+m)
A371865_list = list(islice(A371865_gen(), 20)) # Chai Wah Wu, Apr 09 2024
CROSSREFS
Sequence in context: A184216 A123705 A237364 * A251498 A233848 A343077
KEYWORD
nonn,base,look
AUTHOR
Zak Seidov and Robert Israel, Apr 09 2024
EXTENSIONS
a(1) = 623456789 inserted by Christian Sievers, Apr 10 2024
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 July 30 07:58 EDT 2024. Contains 374737 sequences. (Running on oeis4.)