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-6 of 6 results.

A140480 RMS numbers: numbers n such that root mean square of divisors of n is an integer.

Original entry on oeis.org

1, 7, 41, 239, 287, 1673, 3055, 6665, 9545, 9799, 9855, 21385, 26095, 34697, 46655, 66815, 68593, 68985, 125255, 155287, 182665, 242879, 273265, 380511, 391345, 404055, 421655, 627215, 730145, 814463, 823537, 876785, 1069895, 1087009, 1166399, 1204281, 1256489
Offset: 1

Views

Author

Ctibor O. Zizka, Jun 29 2008, Jul 11 2008

Keywords

Comments

For any numbers, A and B, both appearing in the sequence, if gcd(A,B)=1, then A*B is also in the sequence. - Andrew Weimholt, Jul 01 2008
The primes in this sequence are the NSW primes (A088165). For the terms less than 2^31, the only powers greater than 1 appearing in the prime factorization of numbers are 3^3 and 13^2. It appears that all terms are +-1 (mod 8). See A224988 for even numbers. - T. D. Noe, Jul 06 2008, Apr 25 2013
A basis for this sequence is given by A002315. This can be considered as the convergents of quasiregular continued fractions or a special 6-ary numeration system (see A. S. Fraenkel) which gives the characterization of positions of some heap or Wythoff game. What is the Sprague-Grundy function of this game?
Sequence generalized: sigma_r-numbers are numbers n for which sigma_r(n)/sigma_0(n) = c^r. Sigma_r(n) denotes sum of r-th powers of divisors of n; c,r positive integers. This sequence are sigma_2-numbers, A003601 are sigma_1-numbers. In a weaker form we have sigma_r(n)/sigma_0(n) = c^t; t is an integer from <1,r>. - Ctibor O. Zizka, Jul 14 2008
The primes in this sequence are prime numerators with an odd index in A001333. The RMS values (A141812) of prime RMS numbers (this sequence) are prime Pell numbers (A000129) with an odd index. - Ctibor O. Zizka, Aug 13 2008
From Ctibor O. Zizka, Aug 30 2008: (Start)
The set of RMS numbers n could be split into subsets according to the number and form of divisors of n. By definition, RMS(n) = sqrt(sigma_2(n) / sigma_0(n)) should be an integer. Now consider some examples. For n prime number, n has 2 divisors [1,n] and we have to solve Pell's equation n^2 = 2*C^2 - 1; C positive integer. The solution is a prime n of the form u(i) = 6*u(i-1) - u(i-2), i >= 2, u(0)=1, u(1)=7, known as an NSW prime (A088165). For n = p_1*p_2, p_1 and p_2 primes, n has 4 divisors {1; p_1; p_2; p_1*p_2}. There are 2 possible cases. Firstly p^2 = (2*C)^2 - 1 which does not hold for any prime p; secondly p_1^2 = 2*C_1^2 - 1 and p_2^2 = 2*C_2^2 - 1; C_1 and C_2 positive integers.
The solution is that p_1 and p_2 are different NSW primes. If n = p^3, divisors of n are {1; p; p^2; p^3} and we have to solve the Diophantine equation (p^8 - 1)/(p - 1) = (2*C)^2. This equation has no solution for any prime p. RMS numbers n with 4 divisors are only of the form n = p_1*p_2, with p_1 and p_2 NSW primes. The general case is n = p_1*...*p_t, n has 2^t divisors, and for t >= 3, NSW primes are not the only solution. If some of the prime divisors are equals p_i = p_j = ... = p_k, the general case n = p_1*...*p_t is "degenerate" because of the multiplicity of prime factors and therefore n has fewer than 2^t divisors. (End)
General recurrence is a(n) = (a(1)-1)*a(n-1) - a(n-2), a(1) >= 4, lim_{n->infinity} a(n) = x*(k*x+1)^n, k = a(1) - 3, x = (1 + sqrt((a(1)+1)/(a(1)-3)))/2. Examples in OEIS: a(1)=4 gives A002878, whose prime terms give A121534. a(1)=5 gives A001834, whose prime terms give A086386. a(1)=6 gives A030221, whose prime terms {29, 139, 3191, ...} are not a sequence on the OEIS. a(1)=7 gives A002315, whose prime terms give A088165. a(1)=8 gives A033890; the OEIS does not have its prime terms as a sequence (do there exist any prime terms?). a(1)=9 gives A057080, whose prime terms {71, 34649, 16908641, ...} are not a sequence in the OEIS. a(1)=10 gives A057081, whose prime terms {389806471, 192097408520951, ...} are not a sequence in the OEIS. - Ctibor O. Zizka, Sep 02 2008
16 of the first 1660 terms are even (the smallest is 2217231104). The first 16 even terms are all divisible by 30976. - Donovan Johnson, Apr 16 2013
All the 83 even terms up to 10^13 (see A224988) are divisible by 30976. - Giovanni Resta, Oct 29 2019

Crossrefs

Programs

  • Haskell
    a140480 n = a140480_list !! (n-1)
    a140480_list = filter
        ((== 1) . a010052 . (\x -> a001157 x `div` a000005 x)) a020486_list
    -- Reinhard Zumkeller, Jan 15 2013
  • Mathematica
    rmsQ[n_] := IntegerQ[Sqrt[DivisorSigma[2, n]/DivisorSigma[0, n]]]; m = 160000; sel1 = Select[8*Range[0, m]+1, rmsQ]; sel7 = Select[8*Range[m]-1, rmsQ]; Union[sel1, sel7] (* Jean-François Alcover, Aug 31 2011, after T. D. Noe's comment *)
    Select[Range[1300000],IntegerQ[RootMeanSquare[Divisors[#]]]&] (* Harvey P. Dale, Mar 24 2016 *)

Extensions

More terms from T. D. Noe and Andrew Weimholt, Jul 01 2008

A141813 Primitive RMS numbers: RMS numbers which are not the product of two smaller RMS numbers.

Original entry on oeis.org

1, 7, 41, 239, 3055, 6665, 9545, 9855, 26095, 34697, 155287, 380511, 421655, 627215, 814463, 823537, 1166399, 1204281, 1256489, 1289441, 1815073, 2265353, 2544697, 2627343, 3132935, 3188809, 3762639, 4647985, 4730879, 4963127, 4995569, 5054015, 5143945
Offset: 1

Views

Author

Andrew Weimholt, Jul 07 2008

Keywords

Comments

RMS numbers (see A140480) are numbers such that the RMS (Root Mean Square) of their divisors is an integer. If A and B both appear in A140480 and GCD(A,B)=1, then A*B is also in A140480. This sequence contains only those RMS numbers that are not a product of smaller RMS numbers.

Examples

			The RMS Number 287 is not in the sequence because 287=7*41 and both 7 and 41 are RMS numbers.
		

Crossrefs

A141814 RMS values of the Primitive RMS numbers: a(n) is the Root Mean Square of the divisors of A141813(n).

Original entry on oeis.org

1, 5, 29, 169, 1105, 2405, 3445, 2665, 9425, 12325, 55205, 101065, 124501, 160225, 204425, 239425, 292825, 226525, 446165, 456025, 456025, 801125, 637325, 493025, 801125, 801125, 706225, 1185665, 1185665, 1759925, 1770305, 1291225, 1313845, 1185665, 1743625
Offset: 1

Views

Author

Andrew Weimholt, Jul 07 2008, Jul 09 2008

Keywords

Examples

			a(5)=1105, because A141813(5)=3055, with divisors 1,5,13,47,65,235,611,3055 and RMS(1,5,13,47,65,235,611,3055) = 1105.
		

Crossrefs

A141815 RMS numbers with non-unique RMS values.

Original entry on oeis.org

627215, 876785, 1289441, 1815073, 2265353, 3132935, 3188809, 4390505, 4647985, 4730879, 6542705, 9026087, 11369969, 12705511, 15203889, 15857471, 17888153, 18253913, 18578719, 20871649, 21026655, 21930545, 22321663, 23630711
Offset: 1

Views

Author

Andrew Weimholt, Jul 07 2008

Keywords

Examples

			627215 is an RMS Number with an RMS value of 160225.
876785 is an RMS Number with an RMS value of 160225.
Since these two RMS numbers have the same RMS value, their RMS values are non-unique and therefore they belong to the sequence.
		

Crossrefs

A141816 RMS values of the RMS numbers with non-unique RMS values: a(n) is the Root Mean Square of the divisors of A141815(n).

Original entry on oeis.org

160225, 160225, 456025, 456025, 801125, 801125, 801125, 801125, 1185665, 1185665, 1185665, 2280125, 4032145, 2280125, 4032145, 4005625, 6326125, 6456125, 6569225, 5226065, 4032145, 4005625, 4005625, 5928325, 6326125
Offset: 1

Views

Author

Andrew Weimholt, Jul 07 2008

Keywords

Examples

			a(1)=160225, because A141815(1)=627215 and the Root Mean Square of the divisors of 627215 is 160225.
		

Crossrefs

A327055 Numbers m such that the arithmetic mean and the quadratic mean (the root mean square) of the divisors of m are both integers.

Original entry on oeis.org

1, 7, 41, 239, 287, 1673, 3055, 6665, 9545, 9799, 9855, 21385, 26095, 34697, 46655, 66815, 68593, 68985, 125255, 155287, 182665, 242879, 273265, 380511, 391345, 404055, 421655, 627215, 730145, 814463, 823537, 876785, 1069895, 1087009, 1166399, 1204281, 1256489
Offset: 1

Views

Author

Jaroslav Krizek, Oct 07 2019

Keywords

Comments

Numbers m such that A000203(m) / A000005(m) and sqrt(A001157(m) / A000005(m)) are both integers.
Intersection of A003601 and A140480.
Sequence deviates from A140480 (RMS numbers); first deviation is at a(461), a(461) = 2226133343. Number A140480(461) = 2217231104 is the first RMS number that are not arithmetic (see A327056 for such numbers).
Corresponding values of A000203(a(n)) / A000005(a(n)): 1, 4, 21, 120, 84, 480, 504, 1056, 1512, 2520, 1110, 2016, 4158, ...
Corresponding values of sqrt(A001157(a(n)) / A000005(a(n))): 1, 5, 29, 169, 145, 845, 1105, 2405, 3445, 4901, 2665, 5525, ... (sequence deviates from A141812).

Examples

			Number 41 is a term because sigma(41) / tau(41) = 42 / 2 = 21 and sqrt((1^2 + 41^2)  / tau(41) ) = sqrt(1682 /  2) = 29.
Values of means of the first RMS number 2217231104 that is not in the sequence: 418652080/9 (noninteger) and 247511537 (integer).
		

Crossrefs

Programs

  • Magma
    [m: m in [1..10^6] | IsIntegral(SumOfDivisors(m) / NumberOfDivisors(m)) and IsIntegral(Sqrt(&+[d^2: d in Divisors(m)] / NumberOfDivisors(m)))]
  • Mathematica
    aQ[n_] := IntegerQ[DivisorSigma[1, n]/(d = DivisorSigma[0, n])] && IntegerQ @ Sqrt[DivisorSigma[2, n]/d]; Select[Range[10^5], aQ] (* Amiram Eldar, Oct 07 2019 *)
Showing 1-6 of 6 results.