OFFSET
1,1
COMMENTS
All terms are multiples of 6.
The sequence is a subset of A273124.
LINKS
Paolo P. Lava, First 50 terms and their value of d
EXAMPLE
Aliquot parts of 24 are 1, 2, 3, 4, 6, 8, 12 and 1 mod 12 + 2 mod 12 + 3 mod 12 + 4 mod 12 + 6 mod 12 + 8 mod 12 + 12 mod 12 = 1 + 2 + 3 + 4 + 6 + 8 + 0 = 24.
Aliquot parts of 120 are 1, 2, 3, 4, 5, 6, 8, 10, 12, 15, 20, 24, 30, 40, 60. In this case we can choose two different values: 24 and 30. In fact the sum of divisors from 1 to 20 is 86. Then 24 mod 24 = 0, 30 mod 24 = 6, 40 mod 24 = 16, 60 mod 24 = 12 and 86 + 0 + 6 + 16 + 12 = 120. Again, 24 mod 30 = 24, 30 mod 30 = 0, 40 mod 30 = 10, 60 mod 30 = 0 and 86 + 24 + 0 + 10 + 0 = 120.
MAPLE
with(numtheory): P:= proc(q) local a, b, j, k, n;
for n from 1 to q do a:=sort([op(divisors(n))]);
for k from 1 to nops(a)-1 do b:=0; for j from 1 to nops(a)-1 do b:=b+(a[j] mod a[k]); od;
if b=n then print(n); break; fi; od; od; end: P(10^9);
MATHEMATICA
Select[6 Range[10^5], MemberQ[Function[d, Total@ Mod[d, #] & /@ d]@ Most@ Divisors@ #, #] &] (* Michael De Vlieger, May 17 2016 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Paolo P. Lava, May 17 2016
STATUS
approved