login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A263930 Number of quasi-Carmichael numbers less than 10^n. 0
0, 2, 27, 165, 734, 3109, 11568, 40820, 137850, 457191 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
For quasi-Carmichael numbers see A257750.
LINKS
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
Sequence in context: A166942 A119351 A098627 * A051766 A058406 A216087
KEYWORD
nonn,more,hard
AUTHOR
EXTENSIONS
a(8)-a(10) from Dana Jacobsen, Apr 27 2017
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)