login

Revision History for A073717

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

Showing entries 1-10 | older changes
a(n) = T(2n+1), where T(n) are the tribonacci numbers A000073.
(history; published version)
#21 by N. J. A. Sloane at Fri May 31 14:39:05 EDT 2024
STATUS

proposed

approved

#20 by Jon E. Schoenfield at Fri May 31 12:50:19 EDT 2024
STATUS

editing

proposed

#19 by Jon E. Schoenfield at Fri May 31 12:50:16 EDT 2024
COMMENTS

In general, the bisection of a third -order linear recurrence with signature (x,y,z) will result in a third -order recurrence with signature (x^2 + 2*y, 2*z*x - y^2, z^2). - Gary Detlefs, May 29 2024

FORMULA

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

a(n+1) = Sum_{0<=k<=0..n} A216182(n,k). - Philippe Deléham, Mar 11 2013

STATUS

proposed

editing

#18 by Gary Detlefs at Wed May 29 15:11:51 EDT 2024
STATUS

editing

proposed

#17 by Gary Detlefs at Wed May 29 15:11:09 EDT 2024
COMMENTS

In general, the bisection of a third order linear recurrence with signature (x,y,z) will result in a third order recurrence with signature (x^2 + 2*y, 2*z*x - y^2, z^2). - Gary Detlefs, May 29 2024

STATUS

approved

editing

#16 by Charles R Greathouse IV at Thu Sep 08 08:45:06 EDT 2022
PROG

(MAGMAMagma) [n le 3 select (n-1)^2 else 3*Self(n-1) +Self(n-2) +Self(n-3): n in [1..31]]; // G. C. Greubel, Nov 19 2021

Discussion
Thu Sep 08
08:45
OEIS Server: https://oeis.org/edit/global/2944
#15 by Peter Luschny at Fri Nov 19 01:54:11 EST 2021
STATUS

reviewed

approved

#14 by Michel Marcus at Fri Nov 19 01:47:26 EST 2021
STATUS

proposed

reviewed

#13 by G. C. Greubel at Fri Nov 19 01:43:42 EST 2021
STATUS

editing

proposed

#12 by G. C. Greubel at Fri Nov 19 01:42:58 EST 2021
NAME

a(n) = T(2n+1), where T(n) are the tribonacci numbers A000073.

LINKS

G. C. Greubel, <a href="/A073717/b073717.txt">Table of n, a(n) for n = 0..1000</a>

FORMULA

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

a(n) = A113300(n-1) + A113300(n). - R. J. Mathar, Jul 04 2019

PROG

(MAGMA) [n le 3 select (n-1)^2 else 3*Self(n-1) +Self(n-2) +Self(n-3): n in [1..31]]; // G. C. Greubel, Nov 19 2021

(Sage)

def A073717_list(prec):

P.<x> = PowerSeriesRing(ZZ, prec)

return P( x*(1+x)/(1-3*x-x^2-x^3) ).list()

A073717_list(30) # G. C. Greubel, Nov 19 2021

CROSSREFS

Cf. A000073, A099463, row sums of A216182A113300.

Row sums of A216182.

STATUS

approved

editing