VOOZH
about
URL: https://oeis.org/A294193
⇱ A294193 - OEIS
login
A294193
a(n) = sum of integers between n!+1 and (n+1)!.
3
0, 2, 18, 279, 6960, 252300, 12443760, 800168040, 65028257280, 6518255405760, 790091384544000, 113924591159702400, 19273172758289049600, 3780639334294658035200, 851206099134433961318400, 218026562222345234117760000, 63037891684425054948655104000
(
list
;
graph
;
refs
;
listen
;
history
;
text
;
internal format
)
OFFSET
0,2
COMMENTS
Useful as a growth reference for sequences summing on intervals between 2 factorials.
LINKS
Iain Fox,
Table of n, a(n) for n = 0..252
FORMULA
a(n) = (1/2) * ((n + 1)!*((n + 1)! + 1) - n!*(n! + 1) ).
a(n) =
A055555
(n+1) -
A055555
(n). -
J.S. Seneschal
, Jul 07 2025
EXAMPLE
a(2) = 3 + 4 + 5 + 6 = 18.
a(3) = 7 + 8 + 9 + 10 + 11 + 12 + 13 + 14 + 15 + 16 + 17 + 18 + 19 + 20 + 21 + 22 + 23 + 24 = 24*25/2 - 6*7/2 = 279.
MATHEMATICA
Table[1/2 ((n + 1)! ((n + 1)! + 1) - n! (n! + 1) ), {n, 0, 10}]
PROG
(PARI) a(n) = 1/2*((n+1)!*((n+1)! + 1)-n!*(n!+1)) \\
Iain Fox
, Nov 28 2017
CROSSREFS
Cf.
A000217
(triangular numbers).
Cf.
A001563
(difference of factorials).
Cf.
A049775
(same idea between consecutive powers of 2).
Cf.
A000142
,
A055555
.
Sequence in context:
A355472
A295183
A351768
*
A384256
A127134
A131455
Adjacent sequences:
A294190
A294191
A294192
*
A294194
A294195
A294196
KEYWORD
nonn
,
easy
AUTHOR
Olivier Gérard
, Oct 24 2017
EXTENSIONS
More terms from
Iain Fox
, Nov 28 2017
STATUS
approved