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!)
A212067 Number of (w,x,y,z) with all terms in {1,...,n} and w^3 = x*y*z. 3
0, 1, 2, 3, 10, 11, 12, 13, 26, 45, 46, 47, 60, 61, 62, 63, 88, 89, 120, 121, 128, 129, 130, 131, 162, 199, 200, 255, 262, 263, 264, 265, 332, 333, 334, 335, 402, 403, 404, 405, 436, 437, 438, 439, 446, 477, 478, 479, 540, 601, 674, 675, 682, 683, 786 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
For a guide to related sequences, see A211795.
LINKS
EXAMPLE
G.f. = x + 2*x^2 + 3*x^3 + 10*x^4 + 11*x^5 + 12*x^6 + 13*x^7 + 26*x^8 + ...
a(4) counts these ten 4-tuples:
(1,1,1,1), (2,2,2,2), (3,3,3,3), (4,4,4,4),
(2,1,2,4), (2,1,4,2), (2,2,1,4), (2,2,4,1),
(2,4,1,2), (2,4,2,1).
MATHEMATICA
t = Compile[{{n, _Integer}}, Module[{s = 0},
(Do[If[w^3 == x*y*z, s = s + 1],
{w, 1, #}, {x, 1, #}, {y, 1, #}, {z, 1, #}] &[n]; s)]];
Map[t[#] &, Range[0, 60]] (* A212067 *)
(* Peter J. C. Moses, Apr 13 2012 *)
a[ n_] := Length@FindInstance[ w^3 == x y z && 0 < w <= n && 0 < x <= n && 0 < y <= n && 0 < z <= n, {w, x, y, z}, Integers, 10^9]; (* Michael Somos, Nov 26 2016 *)
CROSSREFS
Sequence in context: A345358 A337110 A007961 * A060811 A146327 A344939
KEYWORD
nonn
AUTHOR
Clark Kimberling, Apr 30 2012
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.)