[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 A001095 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

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

(MAGMAMagma) [n + n*(n-1)*(n-2)*(n-3)*(n-4): n in [0..35]]; // Vincenzo Librandi, Apr 30 2011

Discussion
Thu Sep 08
08:44
OEIS Server: https://oeis.org/edit/global/2944
#35 by Peter Luschny at Tue Aug 27 02:55:54 EDT 2019
STATUS

reviewed

approved

#34 by Joerg Arndt at Tue Aug 27 02:50:09 EDT 2019
STATUS

proposed

reviewed

#33 by G. C. Greubel at Mon Aug 26 23:37:30 EDT 2019
STATUS

editing

proposed

#32 by G. C. Greubel at Mon Aug 26 23:36:34 EDT 2019
FORMULA

G.f.: x*(1 - 4*x + 6*x^2 - 4*x^3 + 121*x^4)/(1-x)^6. [_- _Colin Barker_, Jun 25 2012]

From G. C. Greubel, Aug 26 2019: (Start)

a(n) = n + 5!*binomial(n,5).

E.g.f.: x*(1 + x^4)*exp(x). (End)

MAPLE

seq(n + 5!*binomial(n, 5), n=0..35); # G. C. Greubel, Aug 26 2019

PROG

(PARI) vector(35, n, (n-1) + 5!*binomial(n-1, 5)) \\ G. C. Greubel, Aug 26 2019

(Sage) [n + 120*binomial(n, 5) for n in (0..35)] # G. C. Greubel, Aug 26 2019

(GAP) List([0..35], n-> n + 120*Binomial(n, 5)); # G. C. Greubel, Aug 26 2019

STATUS

approved

editing

#31 by Joerg Arndt at Mon Sep 03 01:51:52 EDT 2018
STATUS

reviewed

approved

#30 by Michel Marcus at Mon Sep 03 01:43:09 EDT 2018
STATUS

proposed

reviewed

#29 by Jon E. Schoenfield at Sun Sep 02 21:21:28 EDT 2018
STATUS

editing

proposed

#28 by Jon E. Schoenfield at Sun Sep 02 21:21:25 EDT 2018
NAME

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

FORMULA

G.f.: x*(1 - 4*x + 6*x^2 - 4*x^3 + 121*x^4)/(1-x)^6. [Colin Barker, Jun 25 2012]

PROG

(MAGMA) [n + n*(n-1)*(n-2)*(n-3)*(n-4): n in [0..35]]; // _Vincenzo Librandi, _, Apr 30 2011

STATUS

approved

editing

#27 by Harvey P. Dale at Sun Oct 08 15:33:05 EDT 2017
STATUS

editing

approved