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!)
A289441 The arithmetic function v_5(n,5). 115
1, 1, 2, 0, 3, 2, 4, 3, 5, 2, 6, 3, 7, 5, 8, 4, 9, 4, 10, 7, 11, 5, 12, 4, 13, 9, 14, 6, 15, 6, 16, 11, 17, 10, 18, 8, 19, 13, 20, 8, 21, 9, 22, 15, 23, 10, 24, 14, 25, 17, 26, 11, 27, 10, 28, 19, 29, 12, 30, 12, 31, 21, 32, 15, 33, 14, 34, 23, 35 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,3
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.
MAPLE
a:= n-> n*max(seq((floor((d-1-igcd(d, 5))/5)+1)
/d, d=numtheory[divisors](n))):
seq(a(n), n=2..100); # Alois P. Heinz, Jul 07 2017
MATHEMATICA
a[n_]:=n*Max[Table[(Floor[(d - 1 - GCD[d, 5])/5] + 1)/d, {d, Divisors[n]}]]; Table[a[n], {n, 2, 100}] (* Indranil Ghosh, Jul 08 2017, after Maple code *)
PROG
(PARI)
v(g, n, h)={my(t=0); fordiv(n, d, t=max(t, ((d-1-gcd(d, g))\h + 1)*(n/d))); t}
a(n)=v(5, n, 5); \\ Andrew Howroyd, Jul 07 2017
(Python)
from sympy import divisors, floor, gcd
def a(n): return n*max([(floor((d - 1 - gcd(d, 5))/5) + 1)/d for d in divisors(n)])
print([a(n) for n in range(2, 101)]) # Indranil Ghosh, Jul 08 2017, after Maple code
CROSSREFS
Sequence in context: A331622 A212175 A370595 * A291272 A291273 A008807
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jul 07 2017
EXTENSIONS
a(41)-a(70) from Andrew Howroyd, Jul 07 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 09:26 EDT 2024. Contains 371967 sequences. (Running on oeis4.)