[go: up one dir, main page]

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

Showing all changes.
a(2n+1)=3a(2n)-3a(2n-1)+2a(2n-2), a(2n+2)=3a(2n+1)-3a(2n), a(0)=a(1)=a(2)=1.
(history; published version)
#10 by Ray Chandler at Wed Sep 23 15:37:16 EDT 2015
STATUS

editing

approved

#9 by Ray Chandler at Wed Sep 23 15:37:13 EDT 2015
LINKS

<a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (0, 3, 0, -3).

MATHEMATICA

Join[{1, 1}, LinearRecurrence[{0, 3, 0, -3}, {1, 2, 3, 5}, 51]] (* Ray Chandler, Sep 23 2015 *)

STATUS

approved

editing

#8 by Jon E. Schoenfield at Wed Aug 26 00:37:08 EDT 2015
STATUS

editing

approved

#7 by Jon E. Schoenfield at Wed Aug 26 00:37:06 EDT 2015
FORMULA

G.f.: (2*x^3-x^2-x+1)*(1+x)^2/(1-3*x^2+3*x^4). [From _- _R. J. Mathar_, Jul 17 2009]

MAPLE

A131292 := proc(n) option remember ; if n <= 2 then 1; elif n mod 2 = 1 then 3*(A131292(n-1)-A131292(n-2))+2*A131292(n-3) ; else 3*(A131292(n-1)-A131292(n-2)) ; fi ; end: seq(A131292(n), n=0..80) ; - _# _R. J. Mathar_, Oct 18 2007

CROSSREFS

Cf. A057083 (bisection). [From _- _R. J. Mathar_, Jul 17 2009]

STATUS

approved

editing

#6 by Russ Cox at Fri Mar 30 18:51:52 EDT 2012
AUTHOR

_Paul Curtz (bpcrtz(AT)free.fr), _, Sep 29 2007

Discussion
Fri Mar 30
18:51
OEIS Server: https://oeis.org/edit/global/249
#5 by Russ Cox at Fri Mar 30 17:39:21 EDT 2012
FORMULA

G.f.: (2*x^3-x^2-x+1)*(1+x)^2/(1-3*x^2+3*x^4). [From _R. J. Mathar (mathar(AT)strw.leidenuniv.nl), _, Jul 17 2009]

MAPLE

A131292 := proc(n) option remember ; if n <= 2 then 1; elif n mod 2 = 1 then 3*(A131292(n-1)-A131292(n-2))+2*A131292(n-3) ; else 3*(A131292(n-1)-A131292(n-2)) ; fi ; end: seq(A131292(n), n=0..80) ; - _R. J. Mathar (mathar(AT)strw.leidenuniv.nl), _, Oct 18 2007

CROSSREFS

Cf. A057083 (bisection). [From _R. J. Mathar (mathar(AT)strw.leidenuniv.nl), _, Jul 17 2009]

EXTENSIONS

More terms from _R. J. Mathar (mathar(AT)strw.leidenuniv.nl), _, Oct 18 2007

Discussion
Fri Mar 30
17:39
OEIS Server: https://oeis.org/edit/global/190
#4 by N. J. A. Sloane at Tue Jun 01 03:00:00 EDT 2010
FORMULA

G.f.: (2*x^3-x^2-x+1)*(1+x)^2/(1-3*x^2+3*x^4). [From R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Jul 17 2009]

CROSSREFS

Cf. A057083 (bisection). [From R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Jul 17 2009]

KEYWORD

sign,easy,new

#3 by N. J. A. Sloane at Fri Jan 09 03:00:00 EST 2009
CROSSREFS

Cf. A131665 (0, 0, 1, 3, 6, 11).

KEYWORD

sign,easy,new

#2 by N. J. A. Sloane at Sun Dec 09 03:00:00 EST 2007
COMMENTS

Sequence is identical to its third differences in absolute value.

KEYWORD

sign,easy,new

#1 by N. J. A. Sloane at Sat Nov 10 03:00:00 EST 2007
NAME

a(2n+1)=3a(2n)-3a(2n-1)+2a(2n-2), a(2n+2)=3a(2n+1)-3a(2n), a(0)=a(1)=a(2)=1.

DATA

1, 1, 1, 2, 3, 5, 6, 9, 9, 12, 9, 9, 0, -9, -27, -54, -81, -135, -162, -243, -243, -324, -243, -243, 0, 243, 729, 1458, 2187, 3645, 4374, 6561, 6561, 8748, 6561, 6561, 0, -6561, -19683, -39366, -59049, -98415, -118098, -177147, -177147, -236196, -177147, -177147, 0, 177147, 531441, 1062882, 1594323

OFFSET

0,4

COMMENTS

Sequence identical to its third differences in absolute value.

MAPLE

A131292 := proc(n) option remember ; if n <= 2 then 1; elif n mod 2 = 1 then 3*(A131292(n-1)-A131292(n-2))+2*A131292(n-3) ; else 3*(A131292(n-1)-A131292(n-2)) ; fi ; end: seq(A131292(n), n=0..80) ; - R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Oct 18 2007

CROSSREFS

Cf. A131665 (0,0,1,3,6,11).

KEYWORD

sign,easy,new

AUTHOR

Paul Curtz (bpcrtz(AT)free.fr), Sep 29 2007

EXTENSIONS

More terms from R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Oct 18 2007

STATUS

approved