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.

A279043 Numbers k such that 3*k+1 and 4*k+1 are both triangular numbers (A000217).

Original entry on oeis.org

63, 12285, 2383290, 462346038, 89692748145, 17399930794155, 3375496881317988, 654828995044895580, 127033449541828424595, 24643834382119669475913, 4780776836681674049902590, 927446062481862646011626610, 179919755344644671652205659813
Offset: 1

Views

Author

Colin Barker, Dec 04 2016

Keywords

Examples

			63 is in the sequence because 3*63+1 = 190 and 4*63+1 = 253 are both triangular numbers.
		

Crossrefs

Programs

  • PARI
    Vec(63*x / ((1 - x)*(1 - 194*x + x^2)) + O(x^20))
    
  • PARI
    isok(k) = ispolygonal(3*k+1, 3) & ispolygonal(4*k+1, 3)

Formula

a(n) = 195*a(n-1) - 195*a(n-2) + a(n-3) for n>3.
G.f.: 63*x / ((1 - x)*(1 - 194*x + x^2)).