A317095 a(n) = 40*n.
0, 40, 80, 120, 160, 200, 240, 280, 320, 360, 400, 440, 480, 520, 560, 600, 640, 680, 720, 760, 800, 840, 880, 920, 960, 1000, 1040, 1080, 1120, 1160, 1200, 1240, 1280, 1320, 1360, 1400, 1440, 1480, 1520, 1560, 1600, 1640, 1680, 1720, 1760, 1800, 1840, 1880
Offset: 0
Links
- P. M. Barlow, Ground Water in Freshwater-Saltwater Environments of the Atlantic Coast, Circular 1262 (2003).
- Wikipedia, Aquifer
- Wikipedia, Saltwater intrusion
- Index entries for linear recurrences with constant coefficients, signature (2,-1).
Crossrefs
Programs
-
Mathematica
Table[40 n, {n, 0, 50}] (* or *) LinearRecurrence[{2, -1}, {0, 40}, 50] (* or *) CoefficientList[Series[40*x/(1 - x)^2, {x, 0, 50}], x] (* Stefano Spezia, Sep 07 2018 *)
-
PARI
a(n) = 40*n
-
PARI
a(n) = if(n==0, 0, if(n==1, 40, 2*a(n-1)-a(n-2)))
-
PARI
concat(0, Vec(40*x/(1-x)^2 + O(x^60)))
Formula
O.g.f.: 40*x/(1 - x)^2.
E.g.f.: 40*x*exp(x). - Bruno Berselli, Sep 10 2018
a(n) = 2*a(n - 1) - a(n - 2) for n > 1. - Stefano Spezia, Sep 07 2018
Comments