login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A081073
Fibonacci(4n+2)+3, or Fibonacci(2n-1)*Lucas(2n+3).
1
4, 11, 58, 380, 2587, 17714, 121396, 832043, 5702890, 39088172, 267914299, 1836311906, 12586269028, 86267571275, 591286729882, 4052739537884, 27777890035291, 190392490709138, 1304969544928660, 8944394323791467
OFFSET
0,1
REFERENCES
Hugh C. Williams, Edouard Lucas and Primality Testing, John Wiley and Sons, 1998, p. 75.
FORMULA
a(n) = 8a(n-1) - 8a(n-2) + a(n-3).
G.f.: -(2*x^2-21*x+4)/((x-1)*(x^2-7*x+1)). - Colin Barker, Jun 22 2012
MAPLE
with(combinat): for n from 0 to 40 do printf(`%d, `, fibonacci(4*n+2)+3) od: # James A. Sellers, Mar 05 2003
MATHEMATICA
Fibonacci[4*Range[0, 30]+2]+3 (* Paolo Xausa, Mar 01 2024 *)
PROG
(Magma) [Fibonacci(4*n+2)+3: n in [0..50]]; // Vincenzo Librandi, Apr 20 2011
(PARI) Vec(-(2*x^2-21*x+4)/((x-1)*(x^2-7*x+1)) + O(x^30)) \\ Michel Marcus, Dec 23 2014
CROSSREFS
Cf. A000045 (Fibonacci numbers).
Sequence in context: A282742 A032181 A203577 * A245545 A002831 A246598
KEYWORD
nonn,easy
AUTHOR
R. K. Guy, Mar 04 2003
EXTENSIONS
More terms from James A. Sellers, Mar 05 2003
STATUS
approved