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!)
A345694 For 1<=x<=n, 1<=y<=n with gcd(x,y)=1, write 1 = gcd(x,y) = u*x+v*y with u,v minimal; a(n) = m^2*s, where s is the population variance of the values of |u| and m is the number of such values. 4
0, 2, 12, 28, 124, 168, 696, 1254, 2800, 3734, 9684, 13282, 27576, 34818, 51828, 71660, 129380, 153172, 254624, 312716, 413774, 496600, 767976, 879284, 1219286, 1422992, 1845842, 2173556, 3043292, 3345884, 4556174, 5288806, 6365966, 7188082, 8786288, 9615066 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The factor m^2 is to ensure that a(n) is an integer.
A345429(n) = m*mu where mu is the mean of the values of |u|.
The population standard deviation sqrt(s) appears to grow linearly with n.
LINKS
PROG
(Python)
from statistics import pvariance
from sympy.core.numbers import igcdex
def A345694(n):
zlist = [z for z in (igcdex(x, y) for x in range(1, n+1) for y in range(1, n+1)) if z[2] == 1]
return pvariance(len(zlist)*abs(u) for u, v, w in zlist)
CROSSREFS
Sequence in context: A211623 A034318 A338798 * A326517 A248119 A240764
KEYWORD
nonn
AUTHOR
Chai Wah Wu, Jun 24 2021
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 16 04:38 EDT 2024. Contains 371696 sequences. (Running on oeis4.)