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”).

A161549
a(n) = 2*n^2 + 14*n + 1.
7
1, 17, 37, 61, 89, 121, 157, 197, 241, 289, 341, 397, 457, 521, 589, 661, 737, 817, 901, 989, 1081, 1177, 1277, 1381, 1489, 1601, 1717, 1837, 1961, 2089, 2221, 2357, 2497, 2641, 2789, 2941, 3097, 3257, 3421, 3589, 3761, 3937, 4117, 4301, 4489, 4681, 4877, 5077
OFFSET
0,2
COMMENTS
The defining formula can be regarded as an approximation and simplification of the expansion/propagation of native hydrophytes on the surface of stagnant waters in orthogonal directions; absence of competition/concurrence and of retrogression is assumed, mortality is taken into account. - [Translation of a comment in French sent by Pierre Gayet]
FORMULA
a(n) = a(n-1) + 4*n + 12 (with a(0)=1). - Vincenzo Librandi, Nov 30 2010
G.f.: (1 + 14*x - 11*x^2)/(1-x)^3. - Vincenzo Librandi, Nov 08 2014
From Elmo R. Oliveira, Oct 25 2024: (Start)
E.g.f.: (1 + 16*x + 2*x^2)*exp(x).
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3) for n > 2. (End)
MATHEMATICA
lst={}; Do[a=2*n^2+14*n+1; AppendTo[lst, a], {n, 0, 5!}]; lst (* Vladimir Joseph Stephan Orlovsky, Jun 13 2009 *)
CoefficientList[Series[(1 + 14 x - 11 x^2) / (1 - x)^3, {x, 0, 50}], x] (* Vincenzo Librandi, Nov 08 2014 *)
Table[2n^2+14n+1, {n, 0, 50}] (* or *) LinearRecurrence[{3, -3, 1}, {1, 17, 37}, 50] (* Harvey P. Dale, Jul 14 2018 *)
PROG
(Magma) [ 2*n^2+14*n+1: n in [0..50] ];
(PARI) Vec((1+14*x-11*x^2)/(1-x)^3 + O(x^100)) \\ Colin Barker, Nov 08 2014
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Pierre Gayet, Jun 13 2009
EXTENSIONS
More terms from Vladimir Joseph Stephan Orlovsky, Jun 13 2009
STATUS
approved