www.fgks.org   »   [go: up one dir, main page]

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!)
A072263 a(n) = 3*a(n-1) + 5*a(n-2), with a(0)=2, a(1)=3. 8
2, 3, 19, 72, 311, 1293, 5434, 22767, 95471, 400248, 1678099, 7035537, 29497106, 123669003, 518492539, 2173822632, 9113930591, 38210904933, 160202367754, 671661627927, 2815996722551, 11806298307288, 49498878534619, 207528127140297 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Inverse binomial transform of A087130. - Johannes W. Meijer, Aug 01 2010
Pisano period lengths: 1, 3, 4, 6, 4, 12, 3, 12, 12, 12, 120, 12, 12, 3, 4, 24, 288, 12, 72, 12... - R. J. Mathar, Aug 10 2012
This is the Lucas sequence V(3,-5). - Bruno Berselli, Jan 09 2013
LINKS
FORMULA
a(n) = 2*A015523(n+1) - 3*A015523(n).
a(n) = ((3 + sqrt(29))/2)^n + ((3 - sqrt(29))/2)^n.
G.f.: (2-3*x)/(1-3*x-5*x^2). - R. J. Mathar, Feb 06 2010
From Johannes W. Meijer, Aug 01 2010: (Start)
Limit_{k -> Infinity} a(n+k)/a(k) = (A072263(n) + A015523(n)*sqrt(29))/2.
Limit_{n -> Infinity} (A072263(n)/A015523(n)) = sqrt(29). (End)
G.f.: G(0), where G(k)= 1 + 1/(1 - x*(29*k-9)/(x*(29*k+20) - 6/G(k+1))); (continued fraction). - Sergei N. Gladkovskii, Jun 17 2013
a(n) = [x^n] ( (1 + 3*x + sqrt(1 + 6*x + 29*x^2))/2 )^n for n >= 1. - Peter Bala, Jun 23 2015
a(n) = 5^((n-1)/2)*( 2*sqrt(5)*Fibonacci(n+1, 3/sqrt(5)) - 3*Fibonacci(n, 3/sqrt(5)) ). - G. C. Greubel, Jan 14 2020
EXAMPLE
a(5)=5*b(4)+b(6): 1293=5*57+1008.
MAPLE
seq(coeff(series((2-3*x)/(1-3*x-5*x^2), x, n+1), x, n), n = 0..40); # G. C. Greubel, Jan 14 2020
MATHEMATICA
LinearRecurrence[{3, 5}, {2, 3}, 40] (* Harvey P. Dale, Nov 23 2018 *)
PROG
(Sage) [lucas_number2(n, 3, -5) for n in range(0, 16)] # Zerinvary Lajos, Apr 30 2009
(PARI) my(x='x+O('x^40)); Vec((2-3*x)/(1-3*x-5*x^2)) \\ G. C. Greubel, Jan 14 2020
(Magma) I:=[2, 3]; [n le 2 select I[n] else 3*Self(n-1) +5*Self(n-2): n in [1..40]]; // G. C. Greubel, Jan 14 2020
(GAP) a:=[2, 3];; for n in [3..40] do a[n]:=3*a[n-1]+5*a[n-2]; od; a; # G. C. Greubel, Jan 14 2020
CROSSREFS
Appears in A179606 and A015523. - Johannes W. Meijer, Aug 01 2010
Sequence in context: A153409 A143893 A262957 * A009178 A141508 A366357
KEYWORD
nonn,easy
AUTHOR
Miklos Kristof, Jul 08 2002
EXTENSIONS
Offset changed and terms added by Johannes W. Meijer, Jul 19 2010
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 July 13 06:26 EDT 2024. Contains 374267 sequences. (Running on oeis4.)