The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A212060 Number of (w,x,y,z) with all terms in {1,...,n} and w=x*y*z-2. 2
0, 0, 3, 6, 15, 18, 28, 34, 43, 46, 64, 67, 76, 85, 100, 103, 121, 124, 142, 151, 160, 163, 193, 199, 208, 218, 236, 239, 266, 269, 290, 299, 308, 317, 353, 356, 365, 374, 404, 407, 434, 437, 455, 473, 482, 485, 530, 536, 554, 563, 581, 584, 614, 623 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
For a guide to related sequences, see A211795.
LINKS
MAPLE
N:= 100:
A:= Vector(N):
for x from 1 to N do
for y from 1 to min(N, floor((N+2)/x)) do
for z from max(1, ceil(3/(x*y))) to min(N, floor((N+2)/(x*y))) do
w:=max(x, y, z, x*y*z-2);
A[w]:= A[w]+1;
od od od:
B:= ListTools:-PartialSums(convert(A, list)):
0, op(B); # Robert Israel, Oct 23 2019
MATHEMATICA
t = Compile[{{n, _Integer}}, Module[{s = 0},
(Do[If[w == x*y*z - 2, s = s + 1],
{w, 1, #}, {x, 1, #}, {y, 1, #}, {z, 1, #}] &[n]; s)]];
Map[t[#] &, Range[0, 60]] (* A212060 *)
(* Peter J. C. Moses, Apr 13 2012 *)
CROSSREFS
Cf. A211795.
Sequence in context: A310125 A124518 A160724 * A249246 A248969 A174279
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 May 19 14:45 EDT 2024. Contains 372698 sequences. (Running on oeis4.)