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!)
A022095 Fibonacci sequence beginning 1, 5. 34

%I #117 Feb 09 2024 10:08:09

%S 1,5,6,11,17,28,45,73,118,191,309,500,809,1309,2118,3427,5545,8972,

%T 14517,23489,38006,61495,99501,160996,260497,421493,681990,1103483,

%U 1785473,2888956,4674429,7563385,12237814,19801199,32039013,51840212,83879225,135719437

%N Fibonacci sequence beginning 1, 5.

%C a(n-1) = Sum_{k=0..ceiling((n-1)/2)} P(5;n-1-k,k), n>=1, with a(-1)=4. These are the sums of the SW-NE diagonals in P(5;n,k), the (5,1) Pascal triangle A093562. Observation by _Paul Barry_, Apr 29 2004. Proof via recursion relations and comparison of inputs. Also sums of the SW-NE diagonals in the (1,4)-Pascal triangle A095666.

%C Row sums of triangle A131776 starting (1, 5, 6, 11, 17, 28, ...). - _Gary W. Adamson_, Jul 14 2007

%C In general, for a Fibonacci sequence beginning with 1,b we have:

%C a(n) = (2^(-1-n)((1 - sqrt(5))^n*(1 + sqrt(5) - 2b)+(1 + sqrt(5))^n*(-1 + sqrt(5) + 2b)))/sqrt(5). - _Herbert Kociemba_, Dec 18 2011

%C Subsequence of primes: 5, 11, 17, 73, 191, 809, 421493, 1103483, ... . - _R. J. Mathar_, Aug 09 2012

%C Pisano period lengths: 1, 3, 8, 6, 20, 24, 16, 12, 24, 60, 10, 24, 28, 48, 40, 24, 36, 24, 9, 60, ... (differs from A001175). - _R. J. Mathar_, Aug 10 2012

%H Muniru A Asiru, <a href="/A022095/b022095.txt">Table of n, a(n) for n = 0..960</a>

%H Tanya Khovanova, <a href="http://www.tanyakhovanova.com/RecursiveSequences/RecursiveSequences.html">Recursive Sequences</a>

%H José L. Ramírez, Gustavo N. Rubiano, and Rodrigo de Castro, <a href="http://arxiv.org/abs/1212.1368">A Generalization of the Fibonacci Word Fractal and the Fibonacci Snowflake</a>, arXiv preprint arXiv:1212.1368 [cs.DM], 2012.

%H José L. Ramírez and Gustavo N. Rubiano, <a href="http://www.mathematica-journal.com/2014/02/properties-and-generalizations-of-the-fibonacci-word-fractal/">Properties and Generalizations of the Fibonacci Word Fractal</a>, The Mathematica Journal, Vol. 16 (2014).

%H Matty van Son, <a href="https://arxiv.org/abs/1911.00746">Uniqueness conjectures for extended Markov numbers</a>, arXiv:1911.00746 [math.NT], 2019.

%H <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (1,1).

%F a(n) = a(n-1) + a(n-2), n>=2, a(0)=1, a(1)=5.

%F G.f.: (1+4*x)/(1-x-x^2).

%F a(n) = 4*Fibonacci(n) + Fibonacci(n+1), n>=1. - _Zerinvary Lajos_, Oct 05 2007, corrected by _R. J. Mathar_, Apr 07 2011

%F a(n-1) = ((1 + sqrt5)^n - (1 - sqrt5)^n)/(2^n*sqrt5)+ 2*((1 + sqrt5)^(n-1) - (1 - sqrt5)^(n-1))/(2^(n-2)*sqrt5). - Al Hakanson (hawkuu(AT)gmail.com), Jan 14 2009

%F a(n) = 4*Fibonacci(n+2) - 3*Fibonacci(n+1). - _Gary Detlefs_, Dec 21 2010

%F a(n) = (L(n-2) + 8*L(n-1) + 4*L(n) + 2*L(n+1))/5 for the Lucas numbers L(n). - _J. M. Bergot_, Oct 22 2012

%F a(n) = ((2*sqrt(5) - 1)*(((1 + sqrt(5))/2)^(n+1)) + (2*sqrt(5) + 1)*(((1 - sqrt(5))/2)^(n+1)))/(sqrt(5)). - _Bogart B. Strauss_, Jul 19 2013

%F a(n) = Lucas(n-1) + Fibonacci(n+3) = Lucas(n+2) - Fibonacci(n-3). - _Greg Dresden_ and Griffin Donaldson, Mar 03 2022

%p with(combinat): a:= n-> 4*fibonacci(n)+fibonacci(n+1): seq(a(n), n=0..32); # _Zerinvary Lajos_, Oct 05 2007

%t f[n_] := (LucasL[n - 2] + 8*LucasL[n - 1] + 4*LucasL[n] + 2*LucasL[n + 1])/5; Array[f, 38, 0] (* or *)

%t LinearRecurrence[{1, 1}, {1, 5}, 38] (* _Robert G. Wilson v_, Oct 22 2012 *)

%o (PARI) a(n)=fibonacci(n-1)+5*fibonacci(n) \\ _Charles R Greathouse IV_, Jun 05 2011

%o (Magma) a0:=1; a1:=5; [GeneralizedFibonacciNumber(a0, a1, n): n in [0..40]]; // _Bruno Berselli_, Feb 12 2013

%o (GAP) List([0..40],n->4*Fibonacci(n)+Fibonacci(n+1)); # _Muniru A Asiru_, Mar 04 2018

%Y a(n) = A101220(4, 0, n+1).

%Y a(n) = A109754(4, n+1).

%Y Cf. A000032, A000045, A131776.

%K nonn,easy

%O 0,2

%A _N. J. A. Sloane_

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 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)