A058848 Numbers k such that the sum of the first k odd composites is palindromic.
1, 12, 25, 61, 108, 211, 1344, 2339, 10539, 78409, 283181, 1748747, 1795423, 2386702, 2819089, 179101605, 1923088106, 2822581688, 7794689270, 17381011919, 25635268093, 28780043265, 97973526253
Offset: 1
Links
- Patrick De Geest, Palindromic Sums
Programs
-
Mathematica
Position[Accumulate[Select[Range[9,10^7,2],CompositeQ]],?(PalindromeQ[#]&)]//Flatten (* The program generates the first 15 terms of the sequence. *) (* _Harvey P. Dale, Aug 05 2025 *)
Extensions
a(20) from Donovan Johnson, Sep 01 2012
a(21)-a(23) from Chai Wah Wu, Dec 06 2019
Comment clarified by Harvey P. Dale, Aug 05 2025
Comments