cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A247136 Numbers for which the root mean square of nontrivial divisors is an integer.

Original entry on oeis.org

4, 9, 25, 49, 119, 121, 161, 169, 289, 343, 361, 369, 527, 529, 711, 721, 833, 841, 959, 961, 1081, 1127, 1241, 1369, 1681, 1695, 1767, 1849, 2047, 2209, 2809, 3281, 3335, 3481, 3553, 3713, 3721, 4207, 4489, 4633, 4681, 5041, 5047, 5215, 5329, 6241, 6713, 6887
Offset: 1

Views

Author

Daniel Lignon, Nov 20 2014

Keywords

Comments

All the squares of prime numbers (A001248) have this property but there are other numbers (A247137): 119,161,343,369,527,711,721,833,959,1081...

Examples

			119 is a term because the nontrivial divisors of 119 are [7,17] and sqrt((7^2+17^2)/2)= 13 : it's an integer.
		

Crossrefs

Cf. A140480 (numbers for which the root mean square of all divisors is an integer), A247136 (numbers for which the root mean square of proper divisors is an integer) and A023886 (numbers for which the arithmetic mean of nontrivial divisors is an integer).

Programs

  • Mathematica
    Select[Range[2,100000],(Not[PrimeQ[#]] && IntegerQ[ RootMeanSquare[ Rest[ Most[ Divisors[#]]]]])&]
  • PARI
    integralRMS(v)=my(t=norml2(v)/#v); denominator(t)==1 && issquare(t)
    is(n)=my(d=divisors(n)); #d>2 && integralRMS(d[2..#d-1]) \\ Charles R Greathouse IV, Nov 20 2014

Formula

Trivially a(n) << n^2 log^2 n. - Charles R Greathouse IV, Nov 20 2014
Showing 1-1 of 1 results.