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!)
A081067 Lucas(4n+2)+2, or 5*Fibonacci(2n+1)^2. 3
5, 20, 125, 845, 5780, 39605, 271445, 1860500, 12752045, 87403805, 599074580, 4106118245, 28143753125, 192900153620, 1322157322205, 9062201101805, 62113250390420, 425730551631125, 2918000611027445, 20000273725560980 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
a(n) is the square of limit of (G(j+2n-1) + G(j-2n+1))/G(j) as j -> infinity, where G(n) is any sequence of the form G(n+1) = G(n) + G(n-1), with any starting values, including non-integer values. G(n) includes Lucas and Fibonacci. Compare with A005248 for even number offsets from j in any such G(n). - Richard R. Forberg, Nov 16 2014
REFERENCES
Hugh C. Williams, Edouard Lucas and Primality Testing, John Wiley and Sons, 1998, p. 75
LINKS
FORMULA
a(n) = 8a(n-1)-8a(n-2)+a(n-3).
G.f.: -5*(x^2-4*x+1)/((x-1)*(x^2-7*x+1)). - Colin Barker, Jun 25 2012
a(n) ~ phi^(4n+2). - Charles R Greathouse IV, Nov 17 2014
a(n) = 5*A081068(n). - R. J. Mathar, Feb 13 2016
MAPLE
luc := proc(n) option remember: if n=0 then RETURN(2) fi: if n=1 then RETURN(1) fi: luc(n-1)+luc(n-2): end: for n from 0 to 40 do printf(`%d, `, luc(4*n+2)+2) od: # James A. Sellers, Mar 05 2003
MATHEMATICA
Table[LucasL[4n+2]+2, {n, 0, 20}] (* or *)
Table[5Fibonacci[2n+1]^2, {n, 0, 30}] (* Harvey P. Dale, Apr 18 2011 *)
PROG
(PARI) a(n)=5*fibonacci(2*n+1)^2 \\ Charles R Greathouse IV, Nov 17 2014
CROSSREFS
Cf. A000045 (Fibonacci numbers), A000032 (Lucas numbers).
Sequence in context: A209069 A301952 A110373 * A318250 A337292 A024066
KEYWORD
nonn,easy
AUTHOR
R. K. Guy, Mar 04 2003
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 16 14:51 EDT 2024. Contains 371749 sequences. (Running on oeis4.)