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-2 of 2 results.

A254674 Indices of heptagonal numbers (A000566) which are also centered triangular numbers (A005448).

Original entry on oeis.org

1, 10, 34, 601, 2089, 37234, 129466, 2307889, 8024785, 143051866, 497407186, 8866907785, 30831220729, 549605230786, 1911038277994, 34066657400929, 118453542014881, 2111583153626794, 7342208566644610, 130884088867460281, 455098477589950921
Offset: 1

Views

Author

Colin Barker, Feb 05 2015

Keywords

Comments

Also positive integers x in the solutions to 5*x^2 - 3*y^2 - 3*x + 3*y - 2 = 0, the corresponding values of y being A254675.

Examples

			10 is in the sequence because the 10th heptagonal number is 235, which is also the 13th centered triangular number.
		

Crossrefs

Programs

  • PARI
    Vec(-x*(x^4+9*x^3-38*x^2+9*x+1)/((x-1)*(x^2-8*x+1)*(x^2+8*x+1)) + O(x^100))

Formula

a(n) = a(n-1)+62*a(n-2)-62*a(n-3)-a(n-4)+a(n-5).
G.f.: -x*(x^4+9*x^3-38*x^2+9*x+1) / ((x-1)*(x^2-8*x+1)*(x^2+8*x+1)).

A254676 Heptagonal numbers (A000566) which are also centered triangular numbers (A005448).

Original entry on oeis.org

1, 235, 2839, 902101, 10906669, 3465871039, 41903418691, 13315875628969, 160992923703385, 51159590700627091, 618534770964985711, 196555134155933653885, 2376410429054551397509, 755164774267506397598311, 9130168249892815504243099, 2901342866180625423639056209
Offset: 1

Views

Author

Colin Barker, Feb 05 2015

Keywords

Examples

			235 is in the sequence because it is the 10th heptagonal number and the 13th centered triangular number.
		

Crossrefs

Programs

  • Mathematica
    LinearRecurrence[{1,3842,-3842,-1,1},{1,235,2839,902101,10906669},20] (* Harvey P. Dale, Oct 12 2024 *)
  • PARI
    Vec(-x*(x^4+234*x^3-1238*x^2+234*x+1)/((x-1)*(x^2-62*x+1)*(x^2+62*x+1)) + O(x^100))

Formula

a(n) = a(n-1)+3842*a(n-2)-3842*a(n-3)-a(n-4)+a(n-5).
G.f.: -x*(x^4+234*x^3-1238*x^2+234*x+1) / ((x-1)*(x^2-62*x+1)*(x^2+62*x+1)).
Showing 1-2 of 2 results.