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

A063440 Number of divisors of n-th triangular number.

Original entry on oeis.org

1, 2, 4, 4, 4, 4, 6, 9, 6, 4, 8, 8, 4, 8, 16, 8, 6, 6, 8, 16, 8, 4, 12, 18, 6, 8, 16, 8, 8, 8, 10, 20, 8, 8, 24, 12, 4, 8, 24, 12, 8, 8, 8, 24, 12, 4, 16, 24, 9, 12, 16, 8, 8, 16, 24, 24, 8, 4, 16, 16, 4, 12, 36, 24, 16, 8, 8, 16, 16, 8, 18, 18, 4, 12, 24, 16, 16, 8, 16, 40, 10, 4, 16
Offset: 1

Views

Author

Henry Bottomley, Jul 24 2001

Keywords

Comments

a(n) = 4 iff either n is in A005383 or n/2 is in A005384.
a(n) is odd iff n is in A001108.
a(n) = 6 if either n = 18 or n = q^2 where q is in A048161 or n = 2 q^2 - 1 where q is in A106483. - Robert Israel, Oct 26 2015
From Bernard Schott, Aug 29 2020: (Start)
a(n-1) is the number of solutions in positive integers (x, y, z) to the simultaneous equations (x + y - z = n, x^2 + y^2 - z^2 = n) for n > 1. See the British Mathematical Olympiad link. In this case, one always has z > x and z > y.
For n = 12 as in the Olympiad problem, the a(11) = 8 solutions are (13,78,79), (14,45,47), (15,34,37), (18,23,29), (23,18,29), (34,15,37), (45,14,47), (78,13,79). (End)

Examples

			a(6) = 4 since 1+2+3+4+5+6 = 21 has four divisors {1,3,7,21}.
		

References

  • Steve Dinh, The Hard Mathematical Olympiad Problems And Their Solutions, AuthorHouse, 2011, Problem 2 of the British Mathematical Olympiad 2007, page 28.

Crossrefs

Cf. A001108, A005383, A005384, A048161, A060778, A081978 (greedy inverse), A106483, A101755 (indices of records), A101756 (records).

Programs

  • Maple
    seq(numtheory:-tau(n*(n+1)/2), n=1..100); # Robert Israel, Oct 26 2015
  • Mathematica
    DivisorSigma[0,#]&/@Accumulate[Range[90]] (* Harvey P. Dale, Apr 15 2019 *)
  • PARI
    for (n=1, 10000, write("b063440.txt", n, " ", numdiv(n*(n + 1)/2)) ) \\ Harry J. Smith, Aug 21 2009
    
  • PARI
    a(n)=factorback(apply(numdiv,if(n%2,[n,(n+1)/2],[n/2,n+1]))) \\ Charles R Greathouse IV, Dec 27 2014
    
  • PARI
    vector(100, n, numdiv(n*(n+1)/2)) \\ Altug Alkan, Oct 26 2015

Formula

a(n) = A000005(A000217(n)).
From Robert Israel, Oct 26 2015: (Start)
a(2k) = A000005(k)*A000005(2k+1).
a(2k+1) = A000005(2k+1)*A000005(k+1).
gcd(a(2k), a(2k+1)) = A000005(2k+1) * A060778(k). (End)

A319035 Triangular numbers T(k) that have the same number of divisors as their successors T(k+1).

Original entry on oeis.org

6, 10, 15, 66, 153, 406, 435, 561, 861, 903, 1378, 1540, 1770, 2211, 2346, 2556, 2926, 3655, 3916, 4186, 4371, 5151, 5778, 6555, 7626, 9453, 10011, 10296, 11175, 11325, 12720, 14535, 14878, 16110, 16836, 17205, 17391, 17766, 18336, 19306, 19503, 20301, 20706
Offset: 1

Views

Author

Jon E. Schoenfield, Dec 05 2018

Keywords

Comments

Not every term T(k) has the same prime signature as its successor triangular number T(k+1); the first counterexample is the pair (T(52), T(53)) = (1378, 1431) = (2 * 13 * 53, 3^3 * 53), each of which has 8 divisors. The first counterexample in which the two triangular numbers have the same number of distinct prime factors is (T(45630), T(45631)) = (1041071265, 1041116896) = (3^3 * 5 * 13^2 * 45631, 2^5 * 23 * 31 * 45631), each of which has 48 divisors.

Examples

			T(2) = 6 is a term because 6 = 2 * 3 has 4 divisors (1, 2, 3, 6) and T(3) = 10 = 2 * 5 also has 4 divisors (1, 2, 5, 10).
T(17) = 153 is a term because 153 = 3^2 * 17 has 6 divisors (1, 3, 9, 17, 51, 153) and T(18) = 171 = 3^2 * 19 also has 6 divisors (1, 3, 9, 19, 57, 171).
		

Crossrefs

Cf. A276542 (indices of these triangular numbers).

Programs

  • GAP
    T:=List([1..210],n->n*(n+1)/2);;  a:=List(Filtered([1..Length(T)-1],i->Tau(T[i])=Tau(T[i+1])),k->T[k]); # Muniru A Asiru, Dec 06 2018
  • Mathematica
    t[n_] := n(n+1)/2; aQ[n_] := DivisorSigma[0, t[n]] == DivisorSigma[0, t[n+1]]; t[Select[Range[100], aQ]] (* Amiram Eldar, Dec 06 2018 *)
  • PARI
    lista(nn) = {for (n=1, nn, if (numdiv(t=n*(n+1)/2) == numdiv((n+1)*(n+2)/2), print1(t, ", ")););} \\ Michel Marcus, Dec 06 2018
    

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

A319037 a(n) is the length of the longest run of consecutive triangular numbers with n divisors.

Original entry on oeis.org

1, 1, 0, 4, 0, 2, 0, 3, 1, 1, 0, 3, 0, 1, 1, 6, 0, 2, 0, 3, 0, 1, 0, 7, 0, 1, 1, 3, 0, 2, 0, 13, 0, 1, 0, 6, 0, 1, 0, 6, 0, 2, 0, 3, 1, 1, 0
Offset: 1

Views

Author

Jon E. Schoenfield, Dec 08 2018

Keywords

Comments

Every number with an odd number of divisors is a square, and no two consecutive positive triangular numbers are squares, so for all odd n, a(n) = 1 if a triangular number with n divisors exists, 0 otherwise.
T(190254647) = 18098415447674628 is the smallest triangular number that begins a run of 9 consecutive triangular numbers with 48 divisors. Does a longer run exist? - Jon E. Schoenfield, May 29 2022
From Jon E. Schoenfield, Mar 17 2023: (Start)
9 <= a(48) <= 16.
a(48) < 17 because a run of 17 consecutive triangular numbers with 48 divisors each would require (see the Example section at A319038) a run of 9 consecutive odd numbers 2k+1, 2k+3, ..., 2k+17 with tau2 divisors each and a run of 9 consecutive integers -- either k, k+1, ..., k+8 or k+1, k+2, ..., k+9 -- with tau1 divisors each, with tau1*tau2 = 48. There exists no run of 8 or more consecutive integers with tau1 < 12 divisors each, nor is there any run of 9 or more consecutive odd numbers with tau1 <= 4 divisors each (tau1 = 4 is impossible because among any 9 or more consecutive odd numbers there is at least one that is a multiple of 9, and the only such multiple with exactly 4 divisors is 3^3 = 27).
Similarly, it can be shown that if a(48) = 16, there must exist a run of 8 consecutive odd numbers 2k+1, 2k+3, ..., 2k+15 with tau2 = 4 divisors each and a run of 9 consecutive integers k, k+1, ..., k+8 with tau1 = 12 divisors each. It seems to me that such solutions should exist (although it could be very difficult to find any). E.g., the 9 consecutive integers could be numbers of the forms 2*13^2*p, 3*5^2*q, 2^5*r, s^2*t*u, 2*3^2*v, 7^2*w*x, 2^2*5*y, 3*z^2*a, and 2*b^2*c, respectively, and the 8 consecutive odd numbers could be of the forms 17*d, 7*e, 3*f, 5*g, 11*h, 3*i, 13*j, and 19*m, respectively, where each letter (other than k) represents a distinct prime. (End)

Examples

			a(1) = 1 because there is only one triangular number T(k) = k*(k+1)/2 with 1 divisor: T(1) = 1.
a(2) = 1 because there is only one triangular number with 2 divisors: T(2) = 3, the only prime triangular number.
a(3) = 0 because there is no triangular number with 3 divisors.
a(4) = 4 because {6, 10, 15, 21} is the longest run of consecutive triangular numbers with 4 divisors.
a(16) = 6 because T(692993)..T(692998) is a run of 6 consecutive triangular numbers with 16 divisors, and no longer run of such triangular numbers exists.
a(24) = 7 because T(1081135121474335700644)..T(1081135121474335700650) is a run of 7 consecutive triangular numbers with 24 divisors, and no longer run of such triangular numbers exists. - _Jinyuan Wang_, Aug 23 2020
T(1081135121474335700644) is the smallest triangular number that begins a run of 7 consecutive triangular numbers with 24 divisors. - _Jon E. Schoenfield_, May 29 2022
		

Crossrefs

Extensions

a(21)-a(24) from Jinyuan Wang, Aug 23 2020
a(25)-a(47) from Jon E. Schoenfield, Feb 04 2021

A081979 Smallest Fibonacci number with 2n divisors, or 0 if no such number exists.

Original entry on oeis.org

2, 8, 75025, 610
Offset: 1

Views

Author

Amarnath Murthy, Apr 03 2003

Keywords

Comments

Further known terms are a(12)=A000045(91); a(16)=A000045(44); a(24)=A000045(50); a(32)=A000045(30); a(36)=A000045(24); a(48)=A000045(56); a(64)=A000045(54); a(80)=A000045(36); a(96)=A000045(182); a(128)=A000045(128); a(168)=A000045(48); a(192)=A000045(110); a(256)=A000045(80), ..., a(688128)=A000045(240) from the Kelly factorizations. - R. J. Mathar, Apr 05 2007
For n prime, a(n) = q*p^(n-1) or p^(2n-1) for some primes p and q since those are the only numbers with 2*n divisors. a(8) = 2584. - Chai Wah Wu, Dec 08 2014
The sequence is restricted to even numbers of divisors since 1 and 144 are the only Fibonacci numbers with an odd number of divisors (because they are the only positive Fibonacci numbers that are squares, see A227875). - Amiram Eldar, Jul 02 2023

Examples

			a(2) = 8 because 8 is the smallest Fibonacci number with 4 divisors (1,2,4,8).
		

Crossrefs

Extensions

Corrected by Emeric Deutsch, Apr 19 2005

A279082 Smallest tetrahedral number with exactly n divisors, or 0 if no such number exists.

Original entry on oeis.org

1, 0, 4, 10, 0, 20, 0, 56, 0, 0, 0, 84, 0, 0, 0, 120, 0, 2300, 0, 560, 0, 0, 0, 1140, 0, 0, 0, 349504, 0, 2362041, 0, 7770, 0, 0, 0, 3276, 0, 0, 0, 82160, 0, 0, 0, 4980598206895701865797099599990718771851543594988165352649, 19600, 0, 0, 7140, 0, 0, 0, 91625967616, 0, 155965244802415621, 0, 41664, 0, 0, 0, 2332880, 0, 0, 0, 59640, 0
Offset: 1

Views

Author

Jon E. Schoenfield, Jan 06 2017, Jan 31 2021

Keywords

Comments

If the k-th tetrahedral number (i.e., A000292(k) = k*(k+1)*(k+2)/6) has exactly 42 divisors, it must be of the form p^6 * q^2 * r where p, q, and r are distinct primes, and it can be shown that p^6, q^2, and r must be k, (k+1)/2, and (k+2)/3, in some order. This results in six cases:
.
p^6 q^2 r resulting equations
======= ======= ======= ===========================
k (k+1)/2 (k+2)/3 p^6 = 2*q^2 - 1 = 3*r - 2
k (k+2)/3 (k+1)/2 p^6 = 3*q^2 - 2 = 2*r - 1
(k+1)/2 k (k+2)/3 2*p^6 = q^2 + 1 = 3*r - 1
(k+1)/2 (k+2)/3 k 2*p^6 = 3*q^2 - 1 = r + 1
(k+2)/3 k (k+1)/2 3*p^6 = q^2 + 2 = 2*r + 1
(k+2)/3 (k+1)/2 k 3*p^6 = 2*q^2 + 1 = r + 2
.
Cases 1 and 2 require p^6 + 1 = 2*q^2 and p^6 + 1 = 2*r, respectively, but both can be ruled out by factoring p^6 + 1 = (p^2 + 1)*(p^4 - p^2 + 1).
The four remaining cases require, respectively, the existence of a square of the form 2*p^6 - 1, (2*p^6 + 1)/3, 3*p^6 - 2, or (3*p^6 - 1)/2. An exhaustive search of the primes p up to 10^10 finds none that yields a square for any of those four forms, so if a(42) is not zero, then a(42) > (10^10)^18 / 6 = 1.666...*10^179.
Terms from a(66) through a(100): ?, 0, 375299968925696, 0, 0, 0, 215820, 0, 0, 0, 24019198012555264, 0, 0, 0, 88560, 0, 0, 0, 32016576, 0, 0, 0, 1431655424, 0, 2391444, 0, a(92), 0, 0, 0, 27720, 0, 0, 0, 40690000. (a(92), too large to show here, is p^22*((3*p^22 - 1)/2)*(3*p^22 - 2) where p = 10711.) [Updated by Max Alekseyev, Feb 03 2024]
Solutions to 2*p^6 = q^2 + 1 correspond to (some) integral points (X,Y) = (p^2, q) on the elliptic curve 2*X^3 = Y^2 + 1. All other cases for n = 42, as well as all the cases for n in {50, 70, 78, 98}, also correspond to elliptic curves, and I have computationally verified that all their integral points do not have the required form. Hence, a(42) = a(50) = a(70) = a(78) = a(98) = 0. - Max Alekseyev, Feb 03 2024

Crossrefs

Cf. A081978 (analogous sequence for triangular numbers).

Extensions

a(42)=a(50)=a(70)=a(78)=a(98)=0 from Max Alekseyev, Feb 03 2024

A319036 a(n) is the smallest triangular number T(k) such that both it and its successor T(k+1) have exactly 2n divisors, or 0 if no such pair of consecutive triangular numbers exists.

Original entry on oeis.org

0, 6, 153, 66, 0, 3916, 0, 1770, 2556, 327645, 0, 1540, 0, 893862621, 8199225, 17766, 0, 76636, 0, 12720, 662976, 2096128, 0, 10296, 3357936, 416798777159765703, 6221628, 3611328, 0, 1734453, 0, 303810, 111576864636, 1420010137134674578503, 18051523357140153
Offset: 1

Views

Author

Jon E. Schoenfield, Dec 05 2018

Keywords

Comments

The only primes p for which a(p) > 0 are those for which both 2*3^(p-1) - 1 and 2*3^(p-1) + 1 are prime: 2, 3, and any other primes p such that p-1 appears both in A003307 and A003306. (If such a prime p > 3 exists, then p exceeds 1360105.)
Conjecture: The only primes p for which a(p) > 0 are 2 and 3.

Examples

			For n=1, the only triangular number with exactly 2*1 = 2 divisors is T(2) = 2*(2+1)/2 = 3 (the only triangular number that is prime); thus, exists no pair of consecutive triangular numbers having exactly 2 divisors, so a(1)=0.
a(2) is 6 because T(3) = 3*(3+1)/2 = 6 and T(4) = 4*(4+1)/2 = 10 are the first two consecutive triangular numbers having exactly 2*2 = 4 divisors.
		

Crossrefs

A319038 Table read by rows: T(n,k) is the smallest triangular number that begins a run of exactly k consecutive triangular numbers with n divisors, or 0 if no such run exists.

Original entry on oeis.org

1, 3, 55, 0, 0, 6, 28, 153, 105, 66, 406, 36, 496, 276, 3916, 11175, 8128, 1631432881, 120, 1770, 17205, 106030, 457062495, 240119995521, 300, 2556, 528, 327645, 12607731, 38009927549623740385753, 630, 1540, 29646, 181503, 3181503, 18542914232391, 584426575442663305723408463937454358857690
Offset: 1

Views

Author

Jon E. Schoenfield, Dec 08 2018

Keywords

Comments

The number of terms in the n-th row is A319037(n). Row n has no terms here iff A081978(n) = 0 (i.e., there is no triangular number with n divisors; this is the case for n = 3, 5, 7, 11, 13, 17, 19, 21, 23, 25, 29, 31, 33, 35, 37, 39, 41, 43, 47, 49, 51, 53, 55, 57, 59, 61, ...).

Examples

			Row 4 has A319037(4) = 4 terms: 55, 0, 0, 6. T(4,4) = 6 because 6 is the smallest triangular number that begins a run of exactly 4 consecutive triangular numbers with 4 divisors; T(4,1) = 55 because T(10)=55 is the smallest triangular number whose predecessor T(9)=45 and successor T(11)=66 each have a number of divisors other than 4 (so 55 constitutes a "run" of only a single triangular number); and T(4,2) = T(4,3) = 0 because no triangular numbers with 4 divisors are in runs of exactly 2 or 3 successive triangular number with 4 divisors. (In other words, every triangular number with 4 divisors that is not in the run {6, 10, 15, 21} is isolated.)
Every triangular number can be represented as the product of an integer m and one of the two odd integers 2m-1 and 2m+1; graphically, if we represent the integers m and the odd integers 2m-1 and 2m+1 in two rows, with each m connected to 2m-1 and 2m+1 by diagonal lines as
.
    1   2   3   4   5   6   7   8   9  10  11  12  13  14  15
   /\  /\  /\  /\  /\  /\  /\  /\  /\  /\  /\  /\  /\  /\  /\
  /  \/  \/  \/  \/  \/  \/  \/  \/  \/  \/  \/  \/  \/  \/
  1   3   5   7   9  11  13  15  17  19  21  23  25  27  29
.
then each triangular number is the product of two connected factors f1 and f2 as follows:
.
f1:      1         2         3         4         5         6
        /\        /\        /\        /\        /\        /\
       /  \      /  \      /  \      /  \      /  \      /  \
      1    3    6   10   15   21   28   36   45   55   66
     /      \  /      \  /      \  /      \  /      \  /
    /        \/        \/        \/        \/        \/
f2: 1         3         5         7         9        11
.
Writing tau() as the number-of-divisors function, since gcd(m, 2m-1) = gcd(m, 2m+1) = 1, we have tau(f1*f2) = tau(f1)*tau(f2) for each triangular number f1*f2. Showing the number of divisors of each factor f1 and f2 and each triangular number in parentheses, we have
.
f1:       1           2           3           4           5
         (1)         (2)         (2)         (3)         (2)
         /\          /\          /\          /\          /\
        /  \        /  \        /  \        /  \        /  \
       1    3      6   10     15   21     28   36     45
     (1)    (2)  (4)    (4)  (4)    (4)  (6)    (9)  (6)
     /        \  /        \  /        \  /        \  /
    /          \/          \/          \/          \/
f2: 1           3           5           7           9
   (1)         (2)         (2)         (2)         (3)
.
A run of consecutive triangular numbers T with a constant tau(T) thus requires a constant tau(f1)=tau1 and a constant tau(f2)=tau2 for all f1 and all f2 that appear as factors in the run. Thus, e.g., a run of 3 consecutive triangular numbers with 12 divisors requires 3 successive connections, hence 4 factors consisting of 2 consecutive integers f1, with tau=tau1, overlapping in the above graphic representation with 2 consecutive odd numbers f2, with tau=tau2, such that tau1*tau2=12. The divisors of 12 are {1, 2, 3, 4, 6, 12}. Neither tau1 nor tau2 can be 1 (only one integer, 1, has tau=1), so neither can be 12/1=12. Neither tau1 nor tau2 can be 3 (every number with 3 divisors is the square of a prime, and no two consecutive integers are squares of primes, nor are any two consecutive odd numbers), so neither can be 12/3=4. Thus tau1 and tau2 must be 2 and 6, in some order. Since tau=2 only for primes, and the only two consecutive integers f1 that are prime are 2 and 3, and the f2 to which they would both connect is 5 (which does not have 6 divisors), tau1 cannot be 2; thus tau1=6, so tau2=2. The two consecutive odd numbers f2 are twin primes, and are not (3,5), so their average is a multiple of 6, so the integer f1 connected to them, being half of that average, is a multiple of 3, and since it has 6 divisors, it must be 3^5 = 243 or a number of the form 3^2*p or 3*p^2 where p is a prime other than 3. As it turns out, the smallest such f1 yielding a run of three consecutive triangular numbers with 12 divisors is 3*5^2 = 75:
.
     74                75                76
(2*37: tau=4)    (3*5^2: tau=6)   (2^2*19: tau=6)
      .                /\                /.
       .              /  \              /  .
        .            /    \            /    .
         .       11175=   11325=   11476=    .
       (tau=8)   75*149   75*151   76*151  (tau=36)
           .     tau=12   tau=12   tau=12      .
            .    /            \    /            .
             .  /              \  /              .
              ./                \/                .
             149               151               153
        (prime: tau=2)    (prime: tau=2)   (3^2*17: tau=6)
.
This first run of exactly three consecutive triangular numbers with 12 divisors begins with 11175, so T(12,3) = 11175.
The table begins as follows:
.
  row  terms
  ---  --------------------------------------------------
    1  1;
    2  3;
    3  (no terms)
    4  55, 0, 0, 6;
    5  (no terms)
    6  28, 153;
    7  (no terms)
    8  105, 66, 406;
    9  36;
   10  496;
   11  (no terms)
   12  276, 3916, 11175;
   13  (no terms)
   14  8128;
   15  1631432881;
   16  120, 1770, 17205, 106030, 457062495, 240119995521;
   17  (no terms)
   18  300, 2556;
   19  (no terms)
   20  528, 327645, 12607731;
   21  (no terms)
   22  38009927549623740385753;
   23  (no terms)
   24  630, 1540, 29646, 181503, 3181503, 18542914232391, 584426575442663305723408463937454358857690
		

Crossrefs

Extensions

T(22,1), T(24,1)-T(24,7) added to Data, and Comments updated, by Jon E. Schoenfield, Jan 29 2021 [T(24,7) from Jinyuan Wang's Example section entry at A319037]

A323747 Smallest triangular number whose number of divisors is the n-th triangular number, or 0 if no such number exists.

Original entry on oeis.org

1, 0, 28, 496, 1631432881, 0, 8256, 2016, 41616, 0, 169878528, 2717872128, 0
Offset: 1

Views

Author

Jon E. Schoenfield, May 25 2019

Keywords

Comments

Additional known terms include a(15)=270480, a(16)=77309214720, a(19)=117261433825538425475625, a(20)=7874496, a(22)=0, a(23)=316659361382400, a(24)=100472400, a(25)=0, a(27)=18951806016, a(28)=35184372088827805696000000, a(31)=20752587086144471040, a(32)=3877678080.
It is known (see the comments and links at A081978) that a(n)=0 for every n such that n*(n+1)/2 is an odd composite not divisible by 3; this includes n = 10, 13, 22, 25, ..., i.e., all n such that n mod 12 is 1 or 10.
Conjectures:
1. a(n) > 0 for every n such that n*(n+1)/2 is even.
2. a(n) = 0 for every n such that n*(n+1)/2 is odd except n = 1, 5, and 9 (whose corresponding values of n*(n+1)/2 are 1, 15, and 45, respectively). Can this be proved for any of the values of n in {14, 17, 18, 21, 26, 29, 30}?

Examples

			a(1) = 1 because 1 is the only triangular number having A000217(1)=1 divisors.
a(2) = 0 because no triangular number has A000217(2)=3 divisors. (Each number with 3 divisors is the square of a prime, and no such number can be of the form k*(k+1)/2.)
a(3) = 28 because 28 = 7*(7+1)/2 = 2^2 * 7 is the smallest triangular number with A000217(3)=6 divisors.
a(5) = 1631432881 = 13^4 * 239^2 is the only triangular with A000217(5)=15 divisors.
		

Crossrefs

Extensions

a(6)-a(13) and updated comments from Jon E. Schoenfield, Jan 29 2021
Showing 1-9 of 9 results.