A254674 Indices of heptagonal numbers (A000566) which are also centered triangular numbers (A005448).
1, 10, 34, 601, 2089, 37234, 129466, 2307889, 8024785, 143051866, 497407186, 8866907785, 30831220729, 549605230786, 1911038277994, 34066657400929, 118453542014881, 2111583153626794, 7342208566644610, 130884088867460281, 455098477589950921
Offset: 1
Examples
10 is in the sequence because the 10th heptagonal number is 235, which is also the 13th centered triangular number.
Links
- Colin Barker, Table of n, a(n) for n = 1..1000
- Index entries for linear recurrences with constant coefficients, signature (1,62,-62,-1,1).
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)).
Comments