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!)
A362933 a(n) = (A132188(n) - A362931(n))/2. 1
0, 0, 0, 1, 1, -1, -1, 0, 2, 2, 2, 1, 1, 1, -1, 2, 2, 2, 2, 1, 1, 1, 1, 0, 4, 4, 6, 5, 5, 1, 1, 4, 4, 4, 2, 5, 5, 5, 5, 4, 4, 0, 0, 1, -1, -1, -1, 0, 6, 10, 10, 11, 11, 11, 11, 10, 10, 10, 10, 5, 5, 5, 5, 12, 12, 8, 8, 9, 9, 7, 7, 8, 8, 8, 10, 11, 9, 7, 7, 8 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,9
COMMENTS
a(n) = one-half of (number of pairs (i,j) in [1..n] X [1..n] with integral geometric mean sqrt(i*j)) - (number of pairs (i,j) in [1..n] X [1..n] with integral harmonic mean 2*i*j/(i+j)).
LINKS
FORMULA
a(n) = A362932(n)/2.
MAPLE
a:= proc(n) option remember; `if`(n=0, 0, add(
`if`(irem(2*i*n, i+n)=0, -1, 0)+
`if`(issqr(i*n), 1, 0), i=1..n-1)+a(n-1))
end:
seq(a(n), n=1..80); # Alois P. Heinz, Aug 28 2023
PROG
(Python)
from sympy.ntheory.primetest import is_square
def A362933(n): return sum((1 if T else -1) for x in range(1, n+1) for y in range(1, x) if (T:=is_square(x*y))^(not (x*y<<1)%(x+y))) # Chai Wah Wu, Aug 29 2023
CROSSREFS
Sequence in context: A167911 A037804 A316894 * A081503 A351206 A176508
KEYWORD
sign,look
AUTHOR
N. J. A. Sloane, Aug 28 2023
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 3 23:22 EDT 2024. Contains 372225 sequences. (Running on oeis4.)