OFFSET
1,11
COMMENTS
Sum of divisors is given by A000203.
This can also be described as the ordinal transform of A000203. - Franklin T. Adams-Watters, Oct 09 2015
a(n) > 1 iff n is in A069822.
LINKS
Paul Tek, Table of n, a(n) for n = 1..25000
FORMULA
a(A034885(k))=1 for k>0.
EXAMPLE
MAPLE
N:= 1000: # to get a(1) to a(N)
Sigmas:= [seq(numtheory:-sigma(i), i=1..N)]:
seq(numboccur(Sigmas[n], Sigmas[1..n]), n=1..N); # Robert Israel, Oct 09 2015
MATHEMATICA
t = DivisorSigma[1, #] & /@ Range@ 10000; s = Position[t, #] & /@ Range@ Max@ t; Flatten[Position[s, #, {3}]][[2]] & /@ Range@ 87 (* Michael De Vlieger, Oct 09 2015 *)
PROG
(PARI) cnt = vector(224); for (n=1, 87, s=sigma(n); cnt[s] = cnt[s]+1; print1(cnt[s] ", "))
CROSSREFS
KEYWORD
nonn,look
AUTHOR
Paul Tek, Oct 09 2015
STATUS
approved
