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.

A242585 Number of divisors of the n-th positive number that is both triangular and square.

Original entry on oeis.org

1, 9, 9, 45, 9, 405, 15, 189, 81, 729, 27, 6075, 27, 1215, 2025, 729, 81, 45927, 27, 32805, 2025, 6561, 81, 229635, 243, 2187, 2187, 18225, 9, 7381125, 243, 24057, 2187, 19683, 3645, 6200145, 729, 19683, 19683, 1240029, 81, 22143375, 243, 295245, 492075, 19683
Offset: 1

Views

Author

Jon E. Schoenfield, May 25 2014

Keywords

Comments

Number of divisors of A001110(n).
Since each term in A001110 is a square, each term in this sequence is an odd number.
Adding terms to this sequence requires obtaining the prime factorization of terms from A001110. This is facilitated by the observation that A001110(n) = (A000129(n)*A001333(n))^2, but after a few hundred terms, it becomes difficult to obtain the prime factorization of some of the values of A000129(n) and A001333(n).
Obviously, a(1) is the only term whose value is 1. It can be shown (see A081978) that 15 appears only at a(7).
Conjectures:
(1) There exist only 5 triangular numbers with exactly 9 divisors: the 2nd, 3rd, 5th, 29th, and 59th terms of A001110.
(2) A001110(4)=41616 is the only triangular number with exactly 45 divisors.
(3) A001110(6)=48024900 is the only triangular number with exactly 405 divisors.
(4) A001110(8)=55420693056 is the only triangular number with exactly 189 divisors.

Examples

			a(2) = 9 because A001110(2) = 36 = 2^2 * 3^2 has (2+1)*(2+1) = 9 divisors.
a(4) = 45 because A001110(4) = 41616 = 2^4 * 3^2 * 17^2 has (4+1)*(2+1)*(2+1) divisors.
a(6) = 405 because A001110(6) = 48024900 = 2^2 * 3^4 * 5^2 * 7^2 * 11^2 has (2+1)*(4+1)*(2+1)*(2+1)*(2+1) = 405 divisors.
		

Crossrefs

Programs

  • Magma
    a:=0; b:=1; NumberOfDivisors(b); for n in [2..46 by 2] do a:=34*b-a+2; NumberOfDivisors(a); b:=34*a-b+2; NumberOfDivisors(b); end for;

Formula

Conjecture: a(n) == 0 mod 9 for n different from 1 and 7 [tested up to n = 300]. - Ivan N. Ianakiev, May 29 2014