login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A270798
Hyperartiads.
4
5281, 5591, 6211, 6271, 8581, 8861, 9011, 9661, 10391, 10691, 11621, 12011, 12911, 13451, 15901, 19001, 19801, 20521, 20921, 21481, 21701, 22901, 22921, 23371, 26141, 27241, 27481, 28001, 28711, 29131, 30971, 31321, 31511, 32341, 32381, 34211, 38261, 38611
OFFSET
1,1
COMMENTS
Artiads (A001583) for which 5 is a quintic residue. [Lehmer] - Eric M. Schmidt, Apr 01 2016
LINKS
E. Lehmer, Artiads characterized, J. Math. Anal. Appl. 15 1966 118-131. Beware errors!
E. Lehmer, Artiads characterized, J. Math. Anal. Appl. 15 1966 118-131 [annotated and corrected scanned copy]
PROG
(Sage) def is_hyperartiad(n) : return n % 10 == 1 and is_prime(n) and 5.powermod((n-1)//5, n) == 1 and fibonacci((n-1)//5) % n == 0 # Eric M. Schmidt, Apr 01 2016
CROSSREFS
Cf. A001583.
Sequence in context: A265985 A234994 A223341 * A237002 A178027 A053397
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Mar 31 2016
EXTENSIONS
Extended and corrected by Eric M. Schmidt, Apr 01 2016
STATUS
approved