A255403 Product_{k=1..n} (k^k)!.
1, 24, 261332866810040451858432000000
Offset: 1
Keywords
Links
- Vaclav Kotesovec, Table of n, a(n) for n = 1..4
Crossrefs
Programs
-
Mathematica
Table[Product[(k^k)!, {k, 1, n}], {n, 1, 4}]
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
Table[Product[(k^k)!, {k, 1, n}], {n, 1, 4}]
Table[Product[(k*n)!, {k, 0, n}], {n, 0, 6}]
2.04166942239863686002905586072...
s[x_] := s[x] = Sum[x^n/((n^2)!), {n, 0, Infinity}] First[RealDigits[N[s[1], 100]]]
suminf(k=0,1/(k^2)!) \\ Hugo Pfoertner, Mar 30 2024
Table[Product[(2*k^2)!, {k, 0, n}], {n, 0, 6}]
a:= n-> mul(mul(i^2+j, i=1..n), j=1..n): seq(a(n), n=0..8); # Alois P. Heinz, Jun 24 2023
Table[Product[i^2 + j, {i, 1, n}, {j, 1, n}], {n, 1, 10}] Table[Product[Pochhammer[1 + i^2, n], {i, 1, n}], {n, 1, 10}]
Table[Product[Binomial[n^2 + k^2, n^2], {k, 0, n}], {n, 0, 8}] Table[Product[Binomial[n^2 + k^2, k^2], {k, 0, n}], {n, 0, 8}]
Comments