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!)
A260654 Numbers k such that Sum_{i=1..k} sigma(i)^d(i) == 0 (mod k), where sigma = A000203 and d = A000005. 0
1, 2, 5, 56, 59, 60, 75, 122, 743, 2835, 3951, 5712, 6866, 7884, 14754, 18751, 292123, 465289, 1921892, 3902477, 7609760, 21855984, 22013406 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
sigma(1)^tau(1) + sigma(2)^tau(2) + sigma(3)^tau(3) + sigma(4)^tau(4) + sigma(5)^tau(5) = 1^1 + 3^2 + 4^2 + 7^3 + 6^2 = 1 + 9 + 16 + 343 + 36 = 405 and 405 / 5 = 81.
MAPLE
with(numtheory): P:=proc(q) local a, n; a:=0;
for n from 1 to q do a:=a+sigma(n)^tau(n);
if a mod n=0 then print(n); fi; od; end: P(10^6);
PROG
(PARI) for(n=1, 1e4, if(sum(k=1, n, sigma(k)^numdiv(k))%n==0, print1(n", "))) \\ Altug Alkan, Nov 13 2015
CROSSREFS
Sequence in context: A073422 A006525 A254406 * A339167 A042161 A176142
KEYWORD
nonn,more
AUTHOR
Paolo P. Lava, Nov 13 2015
EXTENSIONS
Incorrect terms removed by and more terms from Jinyuan Wang, Feb 18 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 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)