login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A279127 a(n) = Sum_{0<=m<n} Product_{-m<=j<=m} (n-j). 1
0, 1, 8, 147, 5824, 405845, 43733976, 6726601063, 1398047697152, 377278848390249, 128228860181918440, 53585748788874537851, 27001973543813627400768, 16144773936121968789213757, 11300021011239061076228900024, 9152162639827097780662174019535 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
n-m | a(n)-a(m) for all n,m.
LINKS
FORMULA
a(n) = A003470(2n-1) for n >= 1.
a(n) = n*hypergeom([1,n+1,1-n],[],-1).
a(n+3) = -a(n)+(4*n^2+6*n-1)*a(n+1)+(4*n^2+18*n+17)*a(n+2)+8*n+12.
D-finite with recurrence +(-2*n+5)*a(n) +(2*n-5)*(4*n^2-6*n+1)*a(n-1) -(2*n-1)*(4*n^2-18*n+19)*a(n-2) +(2*n-1)*a(n-3)=0. - R. J. Mathar, Jul 27 2022
MAPLE
f:= n -> add(mul(n-m, m=-k..k), k=0..n):
map(f, [$0..40]);
MATHEMATICA
Table[Sum[Product[n - j, {j, -m, m}], {m, 0, n}], {n, 0, 25}] (* G. C. Greubel, Dec 07 2016 *)
PROG
(PARI) a(n) = sum(m=0, n-1, prod(j=-m, m, n-j)); \\ Michel Marcus, Dec 07 2016
CROSSREFS
Cf. A003470.
Sequence in context: A351922 A239758 A239759 * A259991 A212732 A220297
KEYWORD
nonn
AUTHOR
Robert Israel, Dec 06 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)