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!)
A212019 Number of (w,x,y,z) with all terms in {1,...,n} and w*x=2*y*z. 2
0, 0, 4, 8, 24, 32, 64, 76, 124, 154, 214, 234, 340, 364, 452, 532, 664, 696, 854, 890, 1086, 1206, 1350, 1394, 1692, 1794, 1966, 2108, 2396, 2452, 2822, 2882, 3212, 3408, 3636, 3860, 4360, 4432, 4688, 4920, 5470, 5550, 6090, 6174, 6642, 7056 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Each term is divisible by 2. See A211795 for a guide to related sequences.
LINKS
EXAMPLE
a(2) counts these four 4-tuples: (1,2,1,1), (2,1,1,1), (2,2,1,2), (2,2,2,1).
MATHEMATICA
t = Compile[{{n, _Integer}}, Module[{s = 0},
(Do[If[w*x == 2 y*z, s = s + 1],
{w, 1, #}, {x, 1, #}, {y, 1, #}, {z, 1, #}] &[n]; s)]];
Map[t[#] &, Range[0, 60]] (* A212019 *)
%/2 (* integers *)
(* Peter J. C. Moses, Apr 13 2012 *)
CROSSREFS
Cf. A211795.
Sequence in context: A254731 A368903 A291548 * A075708 A066617 A272272
KEYWORD
nonn
AUTHOR
Clark Kimberling, Apr 28 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 24 16:56 EDT 2024. Contains 371962 sequences. (Running on oeis4.)