A271266 a(n) = Product_{k=1..n} (k^2 + 21).
1, 22, 550, 16500, 610500, 28083000, 1600731000, 112051170000, 9524349450000, 971483643900000, 117549520911900000, 16692031969489800000, 2754185274965817000000, 523295202243505230000000, 113555058886840634910000000, 27934544486162796187860000000, 7737868822667094544037220000000
Offset: 0
Keywords
Links
- Q. Yin, Q. Tan and Y. Luo, p-Adic Valuation of (12+21)...(n2+21) and Applications, Southeast Asian Bulletin of Mathematics, Vol. 39(5) (2015) page: 747-754.
Programs
-
Mathematica
Table[Product[k^2 + 21, {k, n}], {n, 0, 16}] (* Michael De Vlieger, Apr 03 2016 *)
-
PARI
a(n) = prod(k=1, n, (k^2+21));
Comments