A037051 Palindromic product of some n with sum of next n consecutive integers.
2, 2664662, 9826289, 4128458548214
Offset: 1
Examples
2664662 = 121 * (122 + 123 + ... + 241 + 242) = 121 * 22022.
Programs
-
Mathematica
Select[Table[n^2/2*(1+3n),{n,15000}],PalindromeQ] (* Harvey P. Dale, Sep 07 2025 *)
Comments