A078382 Sum of divisors of numbers which can be written as sum of a positive square and a positive cube.
3, 6, 13, 18, 28, 18, 60, 42, 56, 32, 48, 91, 38, 44, 84, 93, 98, 80, 104, 84, 126, 195, 74, 140, 186, 126, 90, 112, 217, 102, 280, 114, 186, 312, 128, 255, 176, 204, 192, 180, 266, 372, 300, 192, 294, 324, 260, 360, 240, 228, 320, 399, 198, 504, 312, 434, 256
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
DivisorSigma[1, Select[Range[200], Length[Reduce[a^2 + b^3 == # && a > 0 && b > 0, {a, b}, Integers]] > 0 &]] (* Amiram Eldar, Mar 27 2025 *)