A290945 Triangular Carmichael numbers.
561, 8911, 10585, 41041, 115921, 314821, 334153, 6313681, 8134561, 14913991, 32914441, 60957361, 67902031, 135556345, 289766701, 321197185, 329769721, 368113411, 471905281, 765245881, 842202361, 962442001, 1507746241, 2489462641, 2588653081, 3104207821
Offset: 1
Keywords
Examples
8911 = A000217(133) = A002997(7) therefore 8911 is in the sequence.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..8920 (terms below 10^22 calculated using data from Claude Goutier)
- Claude Goutier, Compressed text file carm10e22.gz containing all the Carmichael numbers up to 10^22.
- Jonathan Vos Post, Table of Figurate Numbers, Sorted, Through 10,000. [Wayback Machine link]
- Index entries for sequences related to Carmichael numbers.
Programs
-
Mathematica
seqQ[n_]:=IntegerQ[Sqrt[8n+1]] && !PrimeQ[n] && (Mod[n, CarmichaelLambda[n]] == 1); Select[Range[10^6], seqQ]
Comments