login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A053805
Expansion of (1 + x)^12 / (1 - x)^13.
2
1, 25, 313, 2625, 16641, 85305, 369305, 1392065, 4673345, 14218905, 39753273, 103274625, 251595969, 579168825, 1267854873, 2653649025, 5334940545, 10343052825, 19403906105, 35330137025, 62596382081, 108167252025, 182668423833, 302016962625, 489658242241
OFFSET
0,2
COMMENTS
This is row/column 12 of the Delannoy numbers array, A008288, which is the main entry for these numbers, listing many more properties. - Peter Munn, Jan 05 2023
LINKS
Index entries for linear recurrences with constant coefficients, signature (13,-78,286,-715,1287,-1716,1716,-1287,715,-286,78,-13,1).
FORMULA
G.f.: (1+x)^12/(1-x)^13.
a(n) = A240876(n) + 2*sum( A240876(i), i=0..n-1 ) for n>0, a(0)=1. - Bruno Berselli, Apr 17 2014
MATHEMATICA
CoefficientList[Series[(1 + x)^12/(1 - x)^13, {x, 0, 30}], x] (* Bruno Berselli, Apr 17 2014 *)
PROG
(PARI) Vec((1+x)^12/(1-x)^13+O(x^99)) \\ Charles R Greathouse IV, Sep 27 2012
(Magma) m:=30; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!((1+x)^12/(1-x)^13)); // Bruno Berselli, Apr 17 2014
CROSSREFS
Sequence in context: A359097 A264274 A278876 * A240846 A228255 A125437
KEYWORD
nonn,easy
AUTHOR
R. K. Guy, Apr 07 2000
STATUS
approved