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.

Showing 1-3 of 3 results.

A262489 The index of the first of two consecutive positive triangular numbers (A000217) the sum of which is equal to the sum of three consecutive positive triangular numbers.

Original entry on oeis.org

7, 18, 78, 187, 781, 1860, 7740, 18421, 76627, 182358, 758538, 1805167, 7508761, 17869320, 74329080, 176888041, 735782047, 1751011098, 7283491398, 17333222947, 72099131941, 171581218380, 713707828020, 1698478960861, 7064979148267, 16813208390238
Offset: 1

Views

Author

Colin Barker, Sep 24 2015

Keywords

Comments

For the index of the first of the corresponding three consecutive triangular numbers, see A165517.

Examples

			7 is in the sequence because T(7)+T(8) = 28+36 = 64 = 15+21+28 = T(5)+T(6)+T(7), where T(k) is the k-th triangular number.
		

Crossrefs

Programs

  • PARI
    Vec(-x*(x^4-x^3-10*x^2+11*x+7)/((x-1)*(x^4-10*x^2+1)) + O(x^30))

Formula

a(n) = a(n-1)+10*a(n-2)-10*a(n-3)-a(n-4)+a(n-5) for n>5.
G.f.: -x*(x^4-x^3-10*x^2+11*x+7) / ((x-1)*(x^4-10*x^2+1)).

A262491 The index of the first of two consecutive positive triangular numbers (A000217) the sum of which is equal to the sum of eleven consecutive positive triangular numbers.

Original entry on oeis.org

43, 120, 549, 3783, 17214, 47629, 216688, 1490884, 6782665, 18766098, 85374915, 587404905, 2672353188, 7393795375, 33637500214, 231436042078, 1052900373799, 2913136612044, 13253089709793, 91185213174219, 414840074924010, 1147768431350353, 5221683708158620
Offset: 1

Views

Author

Colin Barker, Sep 24 2015

Keywords

Comments

For the index of the first of the corresponding eleven consecutive triangular numbers, see A116476.

Examples

			43 is in the sequence because T(43)+T(44) = 946+990 = 1936 = 91+...+276 = T(13)+...+T(23), where T(k) is the k-th triangular number.
		

Crossrefs

Programs

  • Mathematica
    LinearRecurrence[{1,0,0,394,-394,0,0,-1,1},{43,120,549,3783,17214,47629,216688,1490884,6782665},30] (* Harvey P. Dale, May 17 2020 *)
  • PARI
    Vec(-x*(10*x^8+33*x^6+77*x^5-3511*x^4+3234*x^3+429*x^2+77*x+43)/((x-1)*(x^8-394*x^4+1)) + O(x^30))

Formula

G.f.: -x*(10*x^8+33*x^6+77*x^5-3511*x^4+3234*x^3+429*x^2+77*x+43) / ((x-1)*(x^8-394*x^4+1)).

A262492 The index of the first of two consecutive positive triangular numbers (A000217) the sum of which is equal to the sum of thirteen consecutive positive triangular numbers.

Original entry on oeis.org

25, 90, 207, 1117, 2560, 9255, 21202, 114022, 261195, 944020, 2162497, 11629227, 26639430, 96280885, 220553592, 1186067232, 2716960765, 9819706350, 22494303987, 120967228537, 277103358700, 1001513766915, 2294198453182, 12337471243642, 28261825626735
Offset: 1

Views

Author

Colin Barker, Sep 24 2015

Keywords

Comments

For the index of the first of the corresponding thirteen consecutive triangular numbers, see A257293.

Examples

			25 is in the sequence because T(25)+T(26) = 325+351 = 676 = 6+...+120 = T(3)+...+T(15), where T(k) is the k-th triangular number.
		

Crossrefs

Programs

  • PARI
    Vec(-x*(12*x^8+13*x^6+65*x^5-1107*x^4+910*x^3+117*x^2+65*x+25)/((x-1)*(x^4-10*x^2-1)*(x^4+10*x^2-1)) + O(x^30))

Formula

G.f.: -x*(12*x^8+13*x^6+65*x^5-1107*x^4+910*x^3+117*x^2+65*x+25) / ((x-1)*(x^4-10*x^2-1)*(x^4+10*x^2-1)).
Showing 1-3 of 3 results.