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

A063400
Largest n-digit Carmichael numbers.
1
561, 8911, 75361, 997633, 9890881, 99861985, 993905641, 9999109081, 99976607641, 999629786233, 9999501351841, 99994742993377, 999922265173441, 9999924433632001, 99999201310035841, 999996386511276505, 9999998594193164041
OFFSET
3,1
EXAMPLE
a(4)=8911 because 8911 is the largest 4-digit Carmichael number. [corrected by Jon E. Schoenfield, Jan 28 2014]
MATHEMATICA
CarmichaelNbrQ[n_] := !PrimeQ[n] && Mod[n, CarmichaelLambda[n]] == 1; f[n_] := f[n] = Block[{k = 10^n - 1}, While[!CarmichaelNbrQ[k], k -= 2]; k]; Reap[Do[Print[{n, f[n]}]; Sow[f[n]], {n, 3, 10}]][[2, 1]] (* Jean-François Alcover, Jan 28 2014, after Shyam Sunder Gupta *)
CROSSREFS
KEYWORD
hard,more,nonn,base
AUTHOR
Shyam Sunder Gupta, Feb 17 2002
EXTENSIONS
a(17)-a(19) from Amiram Eldar, Jun 29 2019
STATUS
approved