login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A081593
Third row of Pascal-(1,7,1) array A081582.
3
1, 17, 97, 241, 449, 721, 1057, 1457, 1921, 2449, 3041, 3697, 4417, 5201, 6049, 6961, 7937, 8977, 10081, 11249, 12481, 13777, 15137, 16561, 18049, 19601, 21217, 22897, 24641, 26449, 28321, 30257, 32257, 34321, 36449, 38641, 40897, 43217, 45601
OFFSET
0,2
FORMULA
a(n) = 1-16*n+32*n^2.
G.f.: (1+7*x)^2/(1-x)^3.
MATHEMATICA
CoefficientList[Series[(1 + 7 x)^2 / (1 - x)^3, {x, 0, 40}], x] (* Vincenzo Librandi, Aug 09 2013 *)
PROG
(Magma) [1-16*n+32*n^2: n in [0..40]]; // Vincenzo Librandi, Aug 09 2013
(PARI) a(n)=32*n^2-16*n+1 \\ Charles R Greathouse IV, Jun 17 2017
CROSSREFS
Sequence in context: A142189 A325068 A264823 * A078901 A078902 A103766
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Mar 23 2003
STATUS
approved