OFFSET
1,2
COMMENTS
Equivalently, a(n) is the period of the decimal expansion of the reciprocals of the corresponding primes in the records of A060370, that is, of the primes that set a record for the ratio between them and the period of its reciprocal.
EXAMPLE
a(5) = 7 because the 5th term of A243110 is 239 and 1/239 = 0.0041841... which has a period of 7.
PROG
(Python)
from sympy import n_order, nextprime
p = 3
best = 0
while True:
if p!=5:
period = n_order(10, p)
k = (p-1)//period
if k > best:
best = k
print(period, end=', ')
p = nextprime(p)
CROSSREFS
KEYWORD
nonn,base,more
AUTHOR
Pedro K. Krause, Jan 01 2023
STATUS
approved