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!)
A144695 Numbers n such that sigma_1(n)/sigma_0(n) = c^2, c an integer. 5
1, 7, 17, 22, 30, 31, 71, 94, 97, 115, 119, 127, 138, 154, 164, 165, 199, 210, 214, 217, 241, 260, 265, 318, 337, 343, 374, 382, 449, 497, 510, 513, 517, 527, 577, 647, 658, 668, 679, 682, 705, 745, 759, 805, 862, 881, 889, 894, 930, 966, 967, 996, 1102, 1125 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
A000203(n)/A000005(n) = c^2. Generalized sigma-sequences are sequences of numbers n for which sigma_r(n)/sigma_s(n) = c^t . Sigma_i(n) denotes sum of i-th powers of divisors of n; c,r,s,t positive integers. This sequence has r=1,s=0,t=2, sequence A003601 has r=1,s=0,t=1, sequence {1,21,53,85,102,110,127,217,431,....} has r=1,s=0,t=3, sequence A020487 has r=2,s=1,t=1, sequence A020486 has r=2,s=0,t=1, sequence A140480 has r=2,s=0,t=2.
LINKS
Eric Weisstein's World of Mathematics, Divisor function
MAPLE
A000005 := proc(n) numtheory[tau](n) ; end: A000203 := proc(n) numtheory[sigma](n) ; end: isA144695 := proc(n) local s ; s := A000005(n) ; if s <> 0 then issqr(A000203(n)/s) ; else false ; fi; end: for n from 1 to 5000 do if isA144695(n) then printf("%d, ", n) ; fi; od: # R. J. Mathar, Sep 20 2008
MATHEMATICA
Select[Range[1125], IntegerQ @ Sqrt[DivisorSigma[1, #]/DivisorSigma[0, #]] &] (* Amiram Eldar, Nov 20 2019 *)
PROG
(PARI) isok(m) = my(f=factor(m), q=sigma(f)/numdiv(f)); issquare(q) && !frac(q); \\ Michel Marcus, Mar 15 2022
CROSSREFS
Sequence in context: A104480 A053746 A327830 * A125244 A070416 A087168
KEYWORD
easy,nonn
AUTHOR
Ctibor O. Zizka, Sep 19 2008
EXTENSIONS
More terms from R. J. Mathar, Sep 20 2008
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 April 20 00:26 EDT 2024. Contains 371798 sequences. (Running on oeis4.)