login
A363838
a(n) = Product_{b=2..n} b^gamma(n, b) where gamma(n, b) = Sum_{i>=1} floor(n/b^i).
3
1, 1, 2, 6, 96, 480, 17280, 120960, 30965760, 2508226560, 250822656000, 2759049216000, 9535274090496000, 123958563176448000, 24295878382583808000, 5466572636081356800000, 179128652139113899622400000, 3045187086364936293580800000, 53278593263040925392489676800000
OFFSET
0,3
COMMENTS
Generalized factorials.
LINKS
Jeffrey C. Lagarias and Wijit Yangjit, The factorial function and generalizations, extended, arXiv:2310.12949 [math.NT], 2023. See Section 7.2 p. 20 and Table 2 p. 29.
PROG
(PARI) f(n, b) = sum(i=1, logint(n, b), n\b^i);
a(n) = prod(b=2, n, b^f(n, b));
(Python)
from math import prod
from sympy import integer_log
def A363838(n): return prod(b**sum(n//b**i for i in range(1, integer_log(n, b)[0]+1)) for b in range(2, n+1)) # Chai Wah Wu, Oct 20 2023
CROSSREFS
Row products of A153216.
Sequence in context: A206156 A229052 A392759 * A280117 A129364 A092287
KEYWORD
nonn
AUTHOR
Michel Marcus, Oct 20 2023
STATUS
approved