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

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A161549 a(n) = 2n^2 + 14n + 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 (list; graph; refs; listen; history; text; internal format)
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]
LINKS
Pierre Gayet, Note et Compte rendu (gif version)
Pierre Gayet, Note et Compte Rendu (pdf version)
Claude Monet, Nymphéas
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
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
Sequence in context: A341937 A225077 A146328 * A269788 A146348 A050952
KEYWORD
easy,nonn
AUTHOR
Pierre Gayet, Jun 13 2009
EXTENSIONS
More terms from Vladimir Joseph Stephan Orlovsky, Jun 13 2009
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | 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 April 25 07:07 EDT 2024. Contains 371964 sequences. (Running on oeis4.)