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

A077089
Quotients when sigma(k+1)/sigma(k) is an integer.
1
3, 2, 1, 2, 1, 1, 2, 1, 1, 1, 2, 3, 1, 3, 1, 2, 1, 2, 2, 3, 2, 1, 1, 1, 1, 1, 3, 1, 1, 1, 2, 2, 2, 2, 3, 1, 2, 2, 3, 2, 2, 1, 2, 1, 2, 1, 1, 1, 1, 2, 3, 2, 2, 1, 2, 2, 1, 2, 3, 3, 1, 3, 1, 2, 2, 2, 3, 2, 1, 1, 3, 1, 1, 1, 1, 1, 2, 2, 1, 1, 2, 2, 1, 3, 3, 2, 1, 2, 1, 2, 2, 3, 1, 2, 2, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1
OFFSET
1,1
LINKS
FORMULA
a(n) = sigma(A058072(n)+1)/sigma(A058072(n)). - Seiichi Manyama, Jan 16 2021
EXAMPLE
a(1) = sigma(2)/sigma(1) = 3/1 = 3.
a(2) = sigma(6)/sigma(5) = 12/6 = 2.
a(3) = sigma(15)/sigma(14) = 24/24 = 1.
MATHEMATICA
Do[s=Mod[a=DivisorSigma[1, n+1], b=DivisorSigma[1, n]]; If[Equal[s, 0], Print[a/b]], {n, 1, 10000000}]
Select[#[[2]]/#[[1]]&/@Partition[DivisorSigma[1, Range[10^6]], 2, 1], IntegerQ] (* Harvey P. Dale, Dec 26 2015 *)
CROSSREFS
KEYWORD
nonn,changed
AUTHOR
Labos Elemer, Oct 31 2002
STATUS
approved