OFFSET
1,1
COMMENTS
a(144) = 733793111393, a(145) is larger than 10^16 (if it exists).
Can be considered as primitive terms of A270083, i.e. terms in A270083 can be obtained by cyclic shifts of the digits of terms in this sequence (and leading zeros are not allowed). - Chai Wah Wu, May 21 2017
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..144
EXAMPLE
1123 is a member as all the cyclic shifts of its digits to the left result are primes (1231, 2311) except the last one (3112) before reaching the original prime.
MATHEMATICA
cyclDigs[k_]:= FromDigits/@ NestList[RotateLeft, IntegerDigits[k], IntegerLength[k]-1]; lftSftNearCircPrmsInBtw[m_, n_]:= ParallelMap[If[ AllTrue[Most[cyclDigs[#]], PrimeQ] && Not@ PrimeQ[Last[cyclDigs[#]]], #, Nothing] &, Prime @ Range[PrimePi[m], PrimePi[n]]];
lftSftNearCircPrmsInBtw[19, 10^7]
PROG
(Python)
from itertools import product
from sympy import isprime
A286333_list = []
for l in range(14):
for w in product('1379', repeat=l):
for d in '0123456789':
for t in '1379':
s = ''.join(w)+d+t
n = int(s)
for i in range(l+1):
if not isprime(int(s)):
break
s = s[1:]+s[0]
else:
if n > 10 and not isprime(int(s)):
A286333_list.append(n) # Chai Wah Wu, May 21 2017
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Mikk Heidemaa, May 07 2017
STATUS
approved