OFFSET
1,1
COMMENTS
Equivalently, primes p such that the smallest extension of F_p containing the 5th roots of unity also contains the 25th roots of unity.
In this respect, the sequence is the n=5 instance of a family of sequences. For n=3, see A129805, and for n=2, see A002144.
Equivalently, the primes p for which, if p^t = 1 mod 5, then p^t = 1 mod 25.
FORMULA
PROG
(Python)
from itertools import count, islice
from sympy import isprime
def A172469_gen(): # generator of terms
yield from (7, 43)
for n in count(50, 50):
for m in (1, 7, 43, 49):
if isprime(n+m):
yield n+m
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Katherine E. Stange, Feb 03 2010
EXTENSIONS
More terms from R. J. Mathar, Feb 05 2010
STATUS
approved
