login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A253689
Centered triangular numbers (A005448) which are also centered heptagonal numbers (A069099).
3
1, 316, 7246, 3818431, 87657571, 46195373386, 1060481282176, 558871623400861, 12829702464103141, 6761228853708238456, 155213739350238513106, 81797346113290645435291, 1877775805829483067448711, 989584286517361374767907526, 22717331543711346799755988036
OFFSET
1,2
FORMULA
a(n) = a(n-1)+12098*a(n-2)-12098*a(n-3)-a(n-4)+a(n-5).
G.f.: -x*(x^4+315*x^3-5168*x^2+315*x+1) / ((x-1)*(x^2-110*x+1)*(x^2+110*x+1)).
EXAMPLE
316 is in the sequence because it is the 15th centered triangular number and the 10th centered heptagonal number.
MATHEMATICA
LinearRecurrence[{1, 12098, -12098, -1, 1}, {1, 316, 7246, 3818431, 87657571}, 20] (* or *) CoefficientList[Series[(x^4 + 315 x^3 - 5168 x^2 + 315 x + 1) / ((1 - x) (x^2 - 110 x + 1)(x^2 + 110 x + 1)), {x, 0, 20}], x] (* Vincenzo Librandi, Jan 10 2015 *)
PROG
(PARI) Vec(-x*(x^4+315*x^3-5168*x^2+315*x+1)/((x-1)*(x^2-110*x+1)*(x^2+110*x+1)) + O(x^100))
(Magma) I:=[1, 316, 7246, 3818431, 87657571]; [n le 5 select I[n] else Self(n-1)+12098*Self(n-2)-12098*Self(n-3)-Self(n-4)+Self(n-5): n in [1..20]]; // Vincenzo Librandi, Jan 10 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Colin Barker, Jan 09 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 22 06:15 EDT 2024. Contains 376097 sequences. (Running on oeis4.)