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
Tim Johannes Ohrtmann, Oct 30 2015
EXTENSIONS
a(8)-a(10) from Dana Jacobsen, Apr 27 2017
STATUS
approved