The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A027937 a(n) = T(2*n, n+1), T given by A027935. 1
1, 7, 26, 79, 221, 596, 1581, 4163, 10926, 28635, 75001, 196392, 514201, 1346239, 3524546, 9227431, 24157781, 63245948, 165580101, 433494395, 1134903126, 2971215027, 7778742001, 20365011024, 53316291121 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = Fibonacci(2*n+3) - 2*n - 2.
From R. J. Mathar, Feb 06 2010: (Start)
a(n) = 5*a(n-1) - 8*a(n-2) + 5*a(n-3) - a(n-4);
G.f.: x*(1 + 2*x - x^2)/((1-3*x+x^2)*(1-x)^2). (End)
MAPLE
with(combinat); seq(fibonacci(2*n+3) -2*(n+1), n=1..30); # G. C. Greubel, Sep 27 2019
MATHEMATICA
Table[Fibonacci[2*n+3]-2*(n+1), {n, 30}] (* G. C. Greubel, Sep 27 2019 *)
PROG
(Magma) [Fibonacci(2*n+3) - 2*n - 2: n in [1..30]]; // Vincenzo Librandi, Apr 18 2011
(PARI) vector(30, n, fibonacci(2*n+3)-2*(n+1)) \\ G. C. Greubel, Sep 27 2019
(Sage) [fibonacci(2*n+3) -2*(n+1) for n in (1..30)] # G. C. Greubel, Sep 27 2019
(GAP) List([1..30], n-> Fibonacci(2*n+3) -2*(n+1) ); # G. C. Greubel, Sep 27 2019
CROSSREFS
Sequence in context: A183957 A078501 A247557 * A135026 A335639 A027138
KEYWORD
nonn,easy
AUTHOR
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 May 18 21:39 EDT 2024. Contains 372666 sequences. (Running on oeis4.)