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

A114248
Number of Fermat pseudoprimes to bases 2, 3 and 5 less than 10^n.
4
0, 0, 0, 4, 11, 36, 95, 257, 685, 1747, 4405, 10601, 25991, 63589, 156965, 387971, 973753, 2471133, 6340799
OFFSET
1,4
MATHEMATICA
Table[Count[Select[Range[2, 10^6], ! PrimeQ[#] && PowerMod[2, # - 1, #] == 1 && PowerMod[3, # - 1, #] == 1 && PowerMod[5, # - 1, #] == 1 &], x_ /; x < 10^n], {n, 6}] (* Robert Price, Jun 09 2019 *)
CROSSREFS
Cf. A083737.
Sequence in context: A358826 A212910 A339034 * A149237 A054577 A206687
KEYWORD
nonn,more
AUTHOR
Eric W. Weisstein, Nov 18 2005
EXTENSIONS
a(9)-a(19) from Amiram Eldar, Apr 16 2022
STATUS
approved