login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A296795
Numbers k such that m = 2*k is the middle side in a Heronian triangle with sides m - 11, m, m + 11.
4
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,1
COMMENTS
a(n) gives values of x satisfying 3*x^2 - y^2 = 363; the corresponding y values are given by A296796.
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)
EXAMPLE
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.
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 *)
PROG
(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
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Sture Sjöstedt, Dec 20 2017
EXTENSIONS
More terms from Colin Barker, Dec 22 2017
STATUS
approved