OFFSET
1,2
COMMENTS
a(n) - a(n - 1) only depends on the prime signature of n. - David A. Corneth, Aug 30 2018
LINKS
David A. Corneth, Table of n, a(n) for n = 1..10000
David A. Corneth, PARI prog
Adrian W. Dudek, On the Success of Mishandling Euclid's Lemma, arXiv:1602.03555 [math.HO], 2016. See A(n) p. 2.
Adrian W. Dudek, On the Success of Mishandling Euclid's Lemma, The American Mathematical Monthly, Vol. 123, No. 9 (2016), 924-927.
PROG
(PARI) a(n) = {s = 0; for (x=1, n, for (y = 1, n, if (x*y <= n, s += sum(r = 1, x*y, !(x*y % r) && (!(x % r) || !(y % r))); ); ); ); s; }
(PARI) \\ See PARI link \\ David A. Corneth, Aug 30 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Marcus, Feb 13 2016
STATUS
approved