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

A153519
Nonprime numbers k such that 10^k == 10 (mod k) and are not Carmichael numbers.
3
1, 6, 9, 10, 15, 18, 30, 33, 45, 55, 90, 91, 99, 165, 246, 259, 370, 385, 451, 481, 495, 505, 657, 703, 715, 909, 1035, 1045, 1233, 1626, 2035, 2409, 2981, 3333, 3367, 3585, 4005, 4141, 4187, 4521, 4545, 5005, 5461, 6533, 6541, 6565, 7107, 7471, 7777, 8149
OFFSET
1,2
COMMENTS
Old name: Members of A121014 which are not Carmichael numbers A002997.
LINKS
MATHEMATICA
Select[Range[8000], !PrimeQ[#] && PowerMod[10, #, #] == Mod[10, #] && !(# > 1 && Divisible[# - 1, CarmichaelLambda[#]]) &] (* Amiram Eldar, Mar 19 2020 *)
PROG
(PARI) isok(n) = !isprime(n) && !is_A002997(n) && (Mod(10^n, n) == Mod(10, n)); \\ Michel Marcus, Nov 06 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Artur Jasinski, Dec 28 2008
EXTENSIONS
New name from Michel Marcus, Nov 06 2013
STATUS
approved