login

Revision History for A128985

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

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

(MAGMAMagma) [(n^3-n^2)*2^n: n in [0..25]]; (* or *) I:=[0, 16, 144, 768]; [n le 4 select I[n] else 8*Self(n-1) - 24*Self(n-2) + 32*Self(n-3) - 16*Self(n-4): n in [1..25]]; // Vincenzo Librandi, Feb 11 2013

Discussion
Thu Sep 08
08:45
OEIS Server: https://oeis.org/edit/global/2944
#20 by Charles R Greathouse IV at Wed Oct 07 10:53:35 EDT 2015
STATUS

editing

approved

#19 by Charles R Greathouse IV at Wed Oct 07 10:53:31 EDT 2015
PROG

(PARI) a(n)=(n^3-n^2)<<n \\ Charles R Greathouse IV, Oct 07 2015

STATUS

approved

editing

#18 by Jon E. Schoenfield at Sun Aug 09 01:57:11 EDT 2015
STATUS

editing

approved

#17 by Jon E. Schoenfield at Sun Aug 09 01:57:09 EDT 2015
NAME

a(n) = (n^3 - n^2)*2^n.

EXTENSIONS

Corrected the first offset. - _Offset corrected by _Mohammad K. Azarian_, Nov 19 2008

STATUS

approved

editing

#16 by Charles R Greathouse IV at Sat Jun 13 00:52:21 EDT 2015
LINKS

<a href="/index/Rec">Index to sequences with entries for linear recurrences with constant coefficients</a>, signature (8,-24,32,-16).

Discussion
Sat Jun 13
00:52
OEIS Server: https://oeis.org/edit/global/2439
#15 by Charles R Greathouse IV at Fri Jun 12 15:32:42 EDT 2015
LINKS

<a href="/index/Rec#recLCC">Index to sequences with linear recurrences with constant coefficients</a>, signature (8,-24,32,-16).

Discussion
Fri Jun 12
15:32
OEIS Server: https://oeis.org/edit/global/2437
#14 by Charles R Greathouse IV at Fri Jun 12 15:18:59 EDT 2015
LINKS

<a href="/Sindx_Rea.htmlindex/Rec#recLCC">Index to sequences with linear recurrences with constant coefficients</a>, signature (8,-24,32,-16).

Discussion
Fri Jun 12
15:18
OEIS Server: https://oeis.org/edit/global/2434
#13 by Harvey P. Dale at Sun Jul 06 16:37:14 EDT 2014
STATUS

editing

approved

#12 by Harvey P. Dale at Sun Jul 06 16:37:08 EDT 2014
MATHEMATICA

Table[(n^3-n^2)2^n, {n, 30}] (* or *) LinearRecurrence[{8, -24, 32, -16}, {0, 16, 144, 768}, 30] (* Harvey P. Dale, Jul 06 2014 *)

STATUS

approved

editing