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

A329948
Carmichael numbers m that have at least 3 prime factors p such that p+1 | m+1.
2
9857524690572481, 33439671284716801, 96653613831890401, 270136961300544031, 528096456788419441, 650643395658753601, 710238404427321601, 1822922951416158241, 4011563714063821201, 4525693104167627041, 4631812281009523441, 7049793086137296001, 8605736094003523201, 10449416165574628801, 11175581620177915681, 12746447178170148001, 12769123623410580481, 17705945296667070001
OFFSET
1,1
COMMENTS
It is not known whether any Carmichael number (A002997) is also Lucas-Carmichael number (A006972). If such a number exists, then it would be a term of this sequence.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..179 (terms below 10^22, calculated using data from Claude Goutier)
Wikipedia, Carmichael number.
EXAMPLE
m = 9857524690572481 is a term because it is a Carmichael number and it has at least 3 prime factors p, {13, 61, 433}, such that p+1 | m+1.
PROG
(Perl) use bigint; use ntheory ':all'; sub isok { my $m = $_[0]; is_carmichael($m) && (grep { ($m+1) % ($_+1) == 0 } factor($m)) >= 3 };
CROSSREFS
Sequence in context: A320865 A274810 A378476 * A160405 A162032 A373560
KEYWORD
nonn
AUTHOR
Daniel Suteu, Nov 25 2019
STATUS
approved