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!)
A071895 CONTINUANT transform of Fibonacci number 1, 2, 3, 5, 8, ... 3
1, 3, 10, 53, 434, 5695, 120029, 4086681, 224887484, 20019072757, 2882971364492, 671752346999393, 253253517790135653, 154485317604329747723, 152477261728991251138254, 243506341466516632397539361, 629220538826740707106492847078, 2630771316340944362928878991172479 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Floor[a(n)/a(n-1)] = F(n+1). lim n->inf a(n)/a(n-1) = F(n+1). - Gerald McGarvey, Jul 17 2004, Nov 06 2007
LINKS
N. J. A. Sloane, Transforms
FORMULA
For n > 2, a(n) = a(n-2) + F(n+1)*a(n-1). - Gerald McGarvey, Jul 17 2004
MAPLE
with(combinat):
a:= proc(n) option remember; `if`(n<0, 0,
`if`(n=0, 1, fibonacci(n+1) *a(n-1) +a(n-2)))
end:
seq(a(n), n=1..20); # Alois P. Heinz, Aug 06 2013
MATHEMATICA
a[1] = 1; a[2] = 3; a[n_] := a[n] = a[n-2] + Fibonacci[n+1]*a[n-1]; Array[a, 20] (* Jean-François Alcover, Feb 13 2016 *)
nxt[{n_, a_, b_}]:={n+1, b, a+b Fibonacci[n+2]}; NestList[nxt, {2, 1, 3}, 20][[;; , 2]] (* Harvey P. Dale, Mar 19 2024 *)
PROG
(Magma) I:=[1, 3]; [n le 2 select I[n] else Self(n-2)+Fibonacci(n+1)*Self(n-1): n in [1..20]]; // Vincenzo Librandi, Feb 13 2016
CROSSREFS
Essentially the same as A135829.
Sequence in context: A264409 A199202 A135829 * A054422 A074503 A318188
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jun 10 2002
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 12 01:52 EDT 2024. Contains 372431 sequences. (Running on oeis4.)