OFFSET
1,2
COMMENTS
All h-Stohr sequences have formula: h terms 1,2,..,2^(n-1),..,2^(h-1) and then continue (2^h-1)(n-h)+1. - Henry Bottomley, Feb 04 2000
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Eric Weisstein's World of Mathematics, Stoehr Sequence.
Index entries for linear recurrences with constant coefficients, signature (2,-1).
FORMULA
Starts 1, 2, 4 then the numbers 7*(n-3)+1.
a(n) = 7*n-20 for n>3. a(n) = 2*a(n-1)-a(n-2) for n>5. G.f.: x*(1+x^2+2*x^3+3*x^4)/(1-x)^2. - Colin Barker, Sep 19 2012
MATHEMATICA
Join[{1, 2, 4, 8}, Range[15, 500, 7]] (* Vladimir Joseph Stephan Orlovsky, Jan 27 2012 *)
CoefficientList[Series[(1 + x^2 + 2 x^3 + 3 x^4)/(1 - x)^2, {x, 0, 60}], x] (* Vincenzo Librandi, Oct 18 2013 *)
LinearRecurrence[{2, -1}, {1, 2, 4, 8, 15}, 60] (* Harvey P. Dale, May 14 2018 *)
PROG
(Magma) [1, 2, 4] cat [7*n+1: n in [1..60]]; // Vincenzo Librandi, Oct 18 2013
(PARI) a(n)=if(n>3, 7*n-20, 2^(n-1)) \\ Charles R Greathouse IV, Sep 17 2015
CROSSREFS
KEYWORD
nonn,easy,changed
AUTHOR
EXTENSIONS
More terms from Eric W. Weisstein
STATUS
approved