A228729 Product of the positive squares less than or equal to n.
1, 1, 1, 4, 4, 4, 4, 4, 36, 36, 36, 36, 36, 36, 36, 576, 576, 576, 576, 576, 576, 576, 576, 576, 14400, 14400, 14400, 14400, 14400, 14400, 14400, 14400, 14400, 14400, 14400, 518400, 518400, 518400, 518400, 518400, 518400, 518400, 518400, 518400, 518400
Offset: 1
Examples
a(6) = 4 since there are two squares less than or equal to 6 (1 and 4) and their product is 1*4 = 4.
Programs
-
Maple
seq(product( (i)^(1 - ceil(sqrt(i)) + floor(sqrt(i))), i = 1..k ), k=1..100);
-
Mathematica
Table[Times@@(Range[Floor[Sqrt[n]]]^2), {n, 50}] (* Alonso del Arte, Sep 01 2013 *)
Formula
a(n) = Product_{i=1..n} i^(1 - ceiling(frac(sqrt(i)))).
a(n) = A214080(n)^2, n > 0.
Sum_{n>=1} 1/a(n) = BesselI(0, 2) + 2*BesselI(1, 2) - 1. - Amiram Eldar, Aug 15 2025
Comments