A259413 Triangular numbers (A000217) that are the sum of eleven consecutive triangular numbers.
2145, 3916, 7381, 13530, 843051, 1547920, 2926990, 5374281, 335521560, 616057651, 1164924046, 2138939715, 133536727236, 245189386585, 463636832725, 851292621696, 53147281907775, 97584759792586, 184526294489911, 338812324484700, 21152484662556621
Offset: 1
Examples
2145 is in the sequence because T(65) = 2145 = 105 + 120 + 136 + 153 + 171 + 190 + 210 + 231 + 253 + 276 + 300 = T(14) + ... + T(24).
Links
- Colin Barker, Table of n, a(n) for n = 1..1000
- Index entries for linear recurrences with constant coefficients, signature (1,0,0,398,-398,0,0,-1,1).
Programs
-
Mathematica
LinearRecurrence[{1, 0, 0, 398, -398, 0, 0, -1, 1}, {2145, 3916, 7381, 13530, 843051, 1547920, 2926990, 5374281, 335521560}, 30] (* Vincenzo Librandi, Jun 27 2015 *)
-
PARI
Vec(-11*x*(6*x^8-x^7+x^5-2199*x^4+559*x^3+315*x^2+161*x+195)/((x-1)*(x^4-20*x^2+1)*(x^4+20*x^2+1)) + O(x^30))
Formula
G.f.: -11*x*(6*x^8-x^7+x^5-2199*x^4+559*x^3+315*x^2+161*x+195) / ((x-1)*(x^4-20*x^2+1)*(x^4+20*x^2+1)).