[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Revision History for A153594 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
a(n) = ((4 + sqrt(3))^n - (4 - sqrt(3))^n)/(2*sqrt(3)).
(history; published version)
#47 by Charles R Greathouse IV at Thu Sep 08 08:45:40 EDT 2022
PROG

(MAGMAMagma) Z<x>:= PolynomialRing(Integers()); N<r>:=NumberField(x^2-3); S:=[ ((4+r)^n-(4-r)^n)/(2*r): n in [1..21] ]; [ Integers()!S[j]: j in [1..#S] ]; // Klaus Brockhaus, Dec 31 2008

(MAGMAMagma) I:=[1, 8]; [n le 2 select I[n] else 8*Self(n-1)-13*Self(n-2): n in [1..25]]; // Vincenzo Librandi, Aug 23 2016

Discussion
Thu Sep 08
08:45
OEIS Server: https://oeis.org/edit/global/2944
#46 by N. J. A. Sloane at Sat Dec 07 12:18:26 EST 2019
PROG

(Sage) [lucas_number1(n, 8, 13) for n in xrangerange(1, 22)] # Zerinvary Lajos, Apr 23 2009

Discussion
Sat Dec 07
12:18
OEIS Server: https://oeis.org/edit/global/2837
#45 by Sean A. Irvine at Tue May 21 00:54:22 EDT 2019
STATUS

reviewed

approved

#44 by G. C. Greubel at Tue May 21 00:31:32 EDT 2019
STATUS

proposed

reviewed

#43 by Jon E. Schoenfield at Mon May 20 22:55:38 EDT 2019
STATUS

editing

proposed

#42 by Jon E. Schoenfield at Mon May 20 22:55:34 EDT 2019
COMMENTS

lim_Lim_{n -> infinity} a(n)/a(n-1) = 4 + sqrt(3) = 5.73205080756887729....

FORMULA

G.f.: x/(1 - 8*x + 13*x^2). - Klaus Brockhaus, Dec 31 2008, corrected Oct 11 2009

a(n) = 8*a(n-1) - 13*a(n-2) for n > 1; a(0)=0, a(1)=1. - Philippe Deléham, Jan 01 2009

MATHEMATICA

Join[{a=1, b=8}, Table[c=8*b-13*a; a=b; b=c, {n, 60}]] (* Vladimir Joseph Stephan Orlovsky, Jan 19 2011 *)

STATUS

approved

editing

#41 by Charles R Greathouse IV at Sun Sep 04 21:02:22 EDT 2016
STATUS

editing

approved

#40 by Charles R Greathouse IV at Sun Sep 04 21:02:18 EDT 2016
FORMULA

G.f.: x/(1-8*x+13*x^2). [_- _Klaus Brockhaus_, Dec 31 2008, corrected Oct 11 2009]

PROG

(PARI) a(n)=([0, 1; -13, 8]^(n-1)*[1; 8])[1, 1] \\ Charles R Greathouse IV, Sep 04 2016

STATUS

proposed

editing

#39 by J. Conrad at Sun Sep 04 19:01:46 EDT 2016
STATUS

editing

proposed

#38 by J. Conrad at Sun Sep 04 19:01:30 EDT 2016
FORMULA

a(n) = Sum_{k=0..n-1} A083882(n-1-k)*4^k. - J. Conrad, Sep 03 2016

STATUS

proposed

editing

Discussion
Sun Sep 04
19:01
J. Conrad: Oh, I mistakenly used the direct product instead of convolution. Fixed.