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

A132629
Sigma(n)/Sum_digits(n) for n such that sigma(n) is divisible by Sum_digits(n).
1
1, 2, 18, 6, 4, 2, 21, 9, 10, 24, 8, 8, 6, 16, 12, 14, 28, 12, 12, 9, 9, 5, 8, 26, 217, 51, 72, 26, 42, 32, 11, 108, 62, 40, 18, 120, 28, 32, 63, 56, 27, 24, 32, 21, 18, 19, 62, 26, 54, 24, 24, 12, 32, 30, 16, 36, 21, 26
OFFSET
0,2
EXAMPLE
n=147 -> sigma(n)=1+3+7+21+49+147=228 Sum_digits(n)=1+4+7=12 -> 228/12 = 19
n=177 -> sigma(n)=1+3+59+177=240 Sum_digits(n)=1+7+7=15 -> 240/15 = 16
MAPLE
with(numtheory); P:=proc(n) local a, i, j, k, w; for i from 1 by 1 to n do w:=0; k:=i; while k>0 do w:=w+k-(trunc(k/10)*10); k:=trunc(k/10); od; j:=sigma(i)/w; if trunc(j)=j then print(j); fi; od; end: P(200);
MATHEMATICA
Select[Table[DivisorSigma[1, n]/Total[IntegerDigits[n]], {n, 300}], IntegerQ] (* Harvey P. Dale, Oct 01 2015 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
STATUS
approved