cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A066955 Number of unordered solutions of x*y + y*z + z*x = n, x,y,z > 0.

This page as a plain text file.
%I A066955 #28 Aug 11 2023 10:00:12
%S A066955 0,0,1,0,1,0,1,1,1,0,2,1,1,1,2,1,2,0,2,2,2,0,3,2,1,2,3,1,3,0,3,3,2,1,
%T A066955 4,2,1,2,4,2,4,0,2,4,3,1,5,3,2,2,4,2,3,2,4,5,2,0,6,2,3,3,5,3,4,2,2,5,
%U A066955 4,0,7,3,2,4,5,4,4,0,5,6,4,1,6,4,2,4,6,2,6,2,4,5,2,3,8,6,2,3,6,2,7,0,5,8,4
%N A066955 Number of unordered solutions of x*y + y*z + z*x = n, x,y,z > 0.
%C A066955 a(n) is the number of distinct rectangular cuboids each one having integer surface area 2*n and integer edge lengths x, y and z. - _Felix Huber_, Aug 08 2023
%H A066955 T. D. Noe, <a href="/A066955/b066955.txt">Table of n, a(n) for n = 1..1000</a>
%F A066955 a(A094379(n)) = n and a(m) = n for m < A094379(n). - _Reinhard Zumkeller_, Mar 23 2012
%o A066955 (PARI) a(n)=sum(i=1,n,sum(j=1,i,sum(k=1,j,if(i*j+j*k+k*i-n,0,1))))
%o A066955 (Haskell)
%o A066955 a066955 n = length [(x,y,z) | x <- [1 .. a000196 (div n 3)],
%o A066955                               y <- [x .. div n x],
%o A066955                               z <- [y .. div (n - x*y) (x + y)],
%o A066955                               x * y + (x + y) * z == n]
%o A066955 -- _Reinhard Zumkeller_, Mar 23 2012
%Y A066955 Cf. A000196, A066360, A094379.
%K A066955 nonn,easy
%O A066955 1,11
%A A066955 _Colin Mallows_, Jan 26 2002
%E A066955 More terms from _Benoit Cloitre_, Feb 02 2003