A232540 Numbers n such that (n(n+1)/2) modulo sigma(n) = 1.
10, 22, 34, 46, 58, 82, 94, 106, 118, 142, 166, 178, 202, 214, 226, 262, 274, 298, 334, 346, 358, 382, 385, 394, 430, 454, 466, 478, 502, 514, 526, 538, 562, 586, 622, 634, 694, 706, 718, 766, 778, 802, 838, 862, 886, 898, 922, 934, 958, 982, 1006, 1018, 1042
Offset: 1
Keywords
Examples
106 is in sequence because antisigma(106) mod sigma(106) = 5509 mod 162 = 1.
Links
- Jaroslav Krizek, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
Select[Range[1100],Mod[(#(#+1))/2,DivisorSigma[1,#]]==1&] (* Harvey P. Dale, Sep 08 2017 *)
Comments