login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A025414 a(n) is the smallest number that is the sum of 3 nonzero squares in exactly n ways. 7
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A025427(a(n)) = n and A025427(m) != n for m < a(n). - Reinhard Zumkeller, Feb 26 2015
LINKS
EXAMPLE
54 is the smallest number having three partitions into nonzero squares: 54 = 1+4+49 = 4+25+25 = 9+9+36.
MATHEMATICA
lim=200; nLst=Table[0, {lim^2}]; Do[n=a^2+b^2+c^2; If[n>0 && n<lim^2, nLst[[n]]++ ], {a, lim}, {b, a, Sqrt[lim^2-a^2]}, {c, b, Sqrt[lim^2-a^2-b^2]}]; u=Union[nLst]; kMax=First[Complement[1+Range[u[[ -1]]], u]]-1; Table[First[Flatten[Position[nLst, k]]], {k, kMax}] (T. D. Noe)
PROG
(Haskell)
import Data.List (elemIndex); import Data.Maybe (fromJust)
a025414 = fromJust . (`elemIndex` a025427_list)
-- Reinhard Zumkeller, Feb 26 2015
CROSSREFS
Cf. A094740 (n having a unique partition into three positive squares), A095812 (greatest number having exactly n partitions into three positive squares).
Cf. A025427.
Sequence in context: A172969 A147267 A071183 * A201276 A053360 A176963
KEYWORD
nonn
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 23:40 EDT 2024. Contains 371798 sequences. (Running on oeis4.)