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”).

A355657
Primes p such that A355655(i) = 1, where i is the index of p in A000040.
2
2, 5, 11, 13, 43, 47, 59, 71, 79, 97, 101, 103, 137, 149, 251, 263, 349, 359, 383, 409, 421, 433, 467, 523, 569, 659, 743, 853, 859, 863, 907, 919, 937, 983, 1069, 1087, 1091, 1093, 1223, 1229, 1259, 1279, 1483, 1499, 1583, 1637, 1663, 1667, 1697, 1709, 1777
OFFSET
1,1
PROG
(PARI) isp(n) = for(b=2, oo, if(Mod(b, n^2)^(n-1)==1, return(ispseudoprime(b))))
forprime(p=1, 200, if(isp(p), print1(p, ", ")))
CROSSREFS
KEYWORD
nonn
AUTHOR
Felix Fröhlich, Jul 12 2022
STATUS
approved