The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A263025 n is the a(n)-th positive integer having its sum of divisors. 3
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 3, 1, 2, 2, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 2, 2, 1, 3, 1, 1, 1, 1, 2, 3, 1, 1, 1, 3, 1, 2, 1, 4, 2, 1, 2, 3, 1, 1, 2, 1, 1, 2, 1, 1, 1, 3, 2, 5, 1, 1, 1, 2, 1, 4, 2, 2, 1, 1, 2, 3, 1, 1, 1, 3 (list; graph; refs; listen; history; text; internal format)
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
FORMULA
a(A034885(k))=1 for k>0.
EXAMPLE
The numbers with sum of divisors 72 are: 30, 46, 51, 55, 71.
Hence: a(30)=1, a(46)=2, a(51)=3, a(55)=4, a(71)=5.
More generally: the terms of each row of A085790 (say of length i) map to 1, 2, ..., i.
Also: for any n>0, the n terms of the n-th row of A201915 map to 1, 2, ..., n.
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
Sequence in context: A089048 A329443 A348416 * A184348 A307614 A363057
KEYWORD
nonn,look
AUTHOR
Paul Tek, Oct 09 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 7 05:23 EDT 2024. Contains 373144 sequences. (Running on oeis4.)