OFFSET
1,1
COMMENTS
The numbers of the sequence are the solution of the differential equation m' = (a-k)*m-b, which can also be written as A003415(m) = (a-k)*m-A003958(m), where k is the number of prime factors of m, and a is the integer Sum_{i=1..k} (1+1/p_i) + Product_{1=1..k} (1+1/p_i).
The numbers of the sequence satisfy also Sum_{i=1..k} (1-1/p_i) - Product_{i=1..k} (1+1/p_i) = some integer.
LINKS
J. M. Borwein and E. Wong, A survey of results relating to Giuga's conjecture on primality, May 08 1995.
Romeo Meštrović, On a Congruence Modulo n^3 Involving Two Consecutive Sums of Powers, Journal of Integer Sequences, Vol. 17 (2014), 14.8.4.
EXAMPLE
740 has prime factors 2, 2, 5, 37. 1 + 1/2 + 1 + 1/2 + 1 + 1/5 + 1 + 1/37 = 967/185 is the sum over 1+1/p_i. (1+1/2) * (1+1/2) * (1+1/5) * (1+1/37) = 513/185 is the product over 1+1/p_i. 967/185 + 513/185 = 8 is an integer.
MAPLE
isA199767 := proc(n)
p := ifactors(n)[2] ;
add(op(2, d)+op(2, d)/op(1, d), d=p) + mul((1+1/op(1, d))^op(2, d), d=p) ;
type(%, 'integer') ;
end proc:
for n from 20 do
if isA199767(n) then
printf("%d, \n", n);
end if;
end do: # R. J. Mathar, Nov 23 2011
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Paolo P. Lava, Nov 22 2011
STATUS
approved
