A050990 2-Knödel numbers.
4, 6, 8, 10, 12, 14, 22, 24, 26, 30, 34, 38, 46, 56, 58, 62, 74, 82, 86, 94, 106, 118, 122, 132, 134, 142, 146, 158, 166, 178, 182, 194, 202, 206, 214, 218, 226, 254, 262, 274, 278, 298, 302, 314, 326, 334, 346, 358, 362, 382, 386, 394, 398, 422, 446, 454, 458
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000 (first 690 terms from R. J. Mathar)
- John H. Castillo and Jhony Fernando Caranguay Mainguez, The set of k-units modulo n, arXiv:1708.06812 [math.NT], 2017.
- Eric Weisstein's World of Mathematics, Knödel Numbers.
- Wikipedia, Knödel number.
Programs
-
Mathematica
Select[Range[4, 460, 2], Divisible[# - 2, CarmichaelLambda@ #] &] (* Michael De Vlieger, Apr 24 2017 *)
-
PARI
a002322(n) = lcm(znstar(n)[2]); forstep(n=4, 500, 2, if((n - 2)%a002322(n)==0, print1(n,", "))) \\ Indranil Ghosh, Jun 22 2017
Comments