OFFSET
0,2
COMMENTS
This term appears in the numerator of several sequences of coefficients used in numerical solutions of ordinary differential equations.
REFERENCES
N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
Jack W Grahl, Table of n, a(n) for n = 0..100
Jack W Grahl, Explanation of the use of this sequence.
Jack W Grahl, Python code to calculate this and related sequences.
W. F. Pickard, Tables for the step-by-step integration of ordinary differential equations of the first order, J. ACM 11 (1964), 229-233.
W. F. Pickard, Tables for the step-by-step integration of ordinary differential equations of the first order, J. ACM 11 (1964), 229-233. [Annotated scanned copy]
FORMULA
a(n) = n! * lcm{1,2,...,n+1} = n!*A003418(n+1). - Sean A. Irvine, Nov 07 2013
EXAMPLE
5! is 120, and the least common multiple of 2, 3, 4, 5 and 6 is 60, so a(5) = 7200.
PROG
(PARI) a(n) = n!*lcm([1..n+1]); \\ Michel Marcus, Oct 15 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Sean A. Irvine, Nov 07 2013
More terms from Jack W Grahl, Feb 27 2021
STATUS
approved