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.

A296795 Numbers k such that m = 2*k is the middle side in a Heronian triangle with sides m - 11, m, m + 11.

Original entry on oeis.org

13, 14, 22, 38, 43, 77, 139, 158, 286, 518, 589, 1067, 1933, 2198, 3982, 7214, 8203, 14861, 26923, 30614, 55462, 100478, 114253, 206987, 374989, 426398, 772486, 1399478, 1591339, 2882957, 5222923, 5938958, 10759342, 19492214, 22164493, 40154411, 72745933
Offset: 0

Views

Author

Sture Sjöstedt, Dec 20 2017

Keywords

Comments

a(n) gives values of x satisfying 3*x^2 - y^2 = 363; the corresponding y values are given by A296796.

Examples

			The smallest triangle of this type has following sides: 15, 26, 37 has the altitude 12 and is a part of the Pythagorean triangle with sides : 12, 35, 37.
		

Crossrefs

Programs

  • Mathematica
    CoefficientList[Series[(13 + 14 x + 22 x^2 - 14 x^3 - 13 x^4 - 11 x^5)/(1 - 4 x^3 + x^6), {x, 0, 36}], x] (* Michael De Vlieger, Dec 22 2017 *)
  • PARI
    Vec((13 + 14*x + 22*x^2 - 14*x^3 - 13*x^4 - 11*x^5) / (1 - 4*x^3 + x^6) + O(x^40)) \\ Colin Barker, Dec 22 2017

Formula

From Colin Barker, Dec 22 2017: (Start)
G.f.: (13 + 14*x + 22*x^2 - 14*x^3 - 13*x^4 - 11*x^5) / (1 - 4*x^3 + x^6).
a(n) = 4*a(n-3) - a(n-6) for n>5.
(End)

Extensions

More terms from Colin Barker, Dec 22 2017