A025414 a(n) is the smallest number that is the sum of 3 nonzero squares in exactly n ways.
3, 27, 54, 129, 194, 209, 341, 374, 614, 594, 854, 1106, 1314, 1154, 1286, 1746, 1634, 1881, 2141, 2246, 2609, 2889, 3461, 3366, 3449, 3506, 4241, 4289, 5066, 4826, 5381, 5606, 6569, 5561, 6254, 7601, 8186, 8069, 8714, 8126, 9434, 8921, 8774, 11066, 11574
Offset: 1
Keywords
Examples
54 is the smallest number having three partitions into nonzero squares: 54 = 1+4+49 = 4+25+25 = 9+9+36.
Links
Crossrefs
Programs
-
Haskell
import Data.List (elemIndex); import Data.Maybe (fromJust) a025414 = fromJust . (`elemIndex` a025427_list) -- Reinhard Zumkeller, Feb 26 2015
-
Mathematica
lim=200; nLst=Table[0, {lim^2}]; Do[n=a^2+b^2+c^2; If[n>0 && n
Comments