login
A263930
Number of quasi-Carmichael numbers less than 10^n.
0
0, 2, 27, 165, 734, 3109, 11568, 40820, 137850, 457191
OFFSET
1,2
COMMENTS
For quasi-Carmichael numbers see A257750.
EXAMPLE
a(1) = 0 because there are no quasi-Carmichael numbers below 10^1.
a(2) = 2 because there are two quasi-Carmichael numbers below 10^2, namely, 35 and 77.
PROG
(Perl) use ntheory ":all"; my($s, $e)=(0, 1); forcomposites { say $e++, " $s" if $_ >= 10**$e; $s++ if is_quasi_carmichael($_) } 1e7; # Dana Jacobsen, Apr 27 2017
CROSSREFS
KEYWORD
nonn,more,hard
AUTHOR
EXTENSIONS
a(8)-a(10) from Dana Jacobsen, Apr 27 2017
STATUS
approved