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!)
A291330 The arithmetic function v_4(n,1). 0
0, 2, 0, 4, 4, 6, 4, 8, 8, 10, 8, 12, 12, 14, 12, 16, 16, 18, 16, 20, 20, 22, 20, 24, 24, 26, 24, 28, 28, 30, 28, 32, 32, 34, 32, 36, 36, 38, 36, 40, 40, 42, 40, 44, 44, 46, 44, 48, 48, 50, 48, 52, 52, 54, 52, 56, 56, 58, 56, 60, 60, 62, 60, 64, 64, 66, 64, 68, 68 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,2
REFERENCES
J. Butterworth, Examining the arithmetic function v_g(n,h). Research Papers in Mathematics, B. Bajnok, ed., Gettysburg College, Vol. 8 (2008).
LINKS
Bela Bajnok, Additive Combinatorics: A Menu of Research Problems, arXiv:1705.07444 [math.NT], May 2017. See Table in Section 1.6.1.
MATHEMATICA
v[g_, n_, h_] := (d = Divisors[n]; Max[(Floor[(d - 1 - GCD[d, g])/h] + 1)*n/d]); Table[v[4, n, 1], {n, 2, 70}]
PROG
(PARI) /* Adapted from Mathematica program */
v(g, n, h) = my(d=divisors(n)); for(k=1, #d, d[k]=floor(((d[k]-1-gcd(d[k], g))/h) + 1)*n/d[k]); vecmax(d)
a(n) = v(4, n, 1) \\ Felix Fröhlich, Aug 22 2017
CROSSREFS
Sequence in context: A323910 A166085 A129760 * A360133 A057377 A145811
KEYWORD
nonn
AUTHOR
Robert Price, Aug 22 2017
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 25 08:20 EDT 2024. Contains 371964 sequences. (Running on oeis4.)