Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

Revision History for A161939

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

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

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

Discussion
Thu Sep 08
08:45
OEIS Server: https://oeis.org/edit/global/2944
#18 by Alois P. Heinz at Fri Aug 17 19:05:55 EDT 2018
STATUS

proposed

approved

#17 by G. C. Greubel at Fri Aug 17 18:36:15 EDT 2018
STATUS

editing

proposed

#16 by G. C. Greubel at Fri Aug 17 18:35:10 EDT 2018
NAME

a(n) = ((3+sqrt(2))*(4+sqrt(2))^n + (3-sqrt(2))*(4-sqrt(2))^n)/2.

PROG

(PARI) x='x+O('x^30); Vec((3-10*x)/(1-8*x+14*x^2)) \\ G. C. Greubel, Aug 17 2018

STATUS

approved

editing

#15 by Joerg Arndt at Sat Feb 03 09:51:29 EST 2018
STATUS

proposed

approved

#14 by Vaclav Kotesovec at Sat Feb 03 05:39:47 EST 2018
STATUS

editing

proposed

#13 by Vaclav Kotesovec at Sat Feb 03 05:39:25 EST 2018
FORMULA

From Emeric Deutsch, Jun 28 2009: (Start)

G.f.=(3-10x)/(1-8x+14x^2).

Recursive relation: a(n) = 8a(n-1) - 14a(n-2); a(0)=3, a(1)=14.

(End)

STATUS

proposed

editing

#12 by Muniru A Asiru at Fri Feb 02 03:30:03 EST 2018
STATUS

editing

proposed

Discussion
Fri Feb 02
09:14
Alois P. Heinz: Yes, g.f. and recursion is duplicated.  Suggest to remove the duplicates.
#11 by Muniru A Asiru at Fri Feb 02 03:29:33 EST 2018
LINKS

Muniru A Asiru, <a href="/A161939/b161939.txt">Table of n, a(n) for n = 0..280</a>

PROG

(GAP) a := [3, 14];; for n in [3..10^2] do a[n] := 8*a[n-1] - 14*a[n-2]; od; a; # Muniru A Asiru, Feb 02 2018

STATUS

proposed

editing

#10 by Jon E. Schoenfield at Fri Feb 02 00:35:07 EST 2018
STATUS

editing

proposed

Discussion
Fri Feb 02
01:50
Michel Marcus: Emeric Deutsch, Jun 28 2009 is the same as 2 lines before ??