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.

A343426 Triangular numbers T(i) that can be expressed as the sum of 2 positive triangular numbers, T(j)+T(k), and for which i+j+k is a triangular number, where T is A000217.

Original entry on oeis.org

276, 741, 17766, 30876, 42778, 43071, 44850, 54946, 73920, 99681, 163306, 184528, 254541, 310866, 446040, 524800, 963966, 1006071, 1046181, 1160526, 1258491, 1873080, 1929630, 2793066, 3034416, 3108771, 3121251, 3454506, 3635556, 4305645, 4317391, 4435731, 4831386, 4859403
Offset: 1

Views

Author

Michel Marcus, Apr 15 2021

Keywords

Examples

			276 = T(23) = 105 + 171 = T(14) + T(18) and 23+14+18 = 55 = T(10), so 276 is a term.
		

Crossrefs

Cf. A000217. Subsequence of A089982.

Programs

  • PARI
    lista(nn) = {for (n=1, nn, my(t = n*(n+1)/2, kk); for (k=1, n-1, if (ispolygonal(t - k*(k+1)/2, 3, &kk), if (ispolygonal(n+k+kk, 3), print1(t, ", "); break;););););}