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!)
A275520 Least k such that n divides d(k^k) (d = A000005, k > 0). 1
1, 3, 2, 3, 8, 5, 6, 7, 4, 19, 10, 11, 12, 13, 14, 15, 25, 17, 9, 19, 20, 21, 22, 23, 8, 45, 26, 55, 28, 29, 30, 15, 49, 33, 34, 35, 18, 37, 38, 39, 20, 41, 42, 21, 14, 45, 46, 35, 6, 39, 25, 51, 52, 35, 54, 55, 28, 57, 58, 59, 60, 61, 62, 15, 12, 65, 66, 33, 68, 69, 70, 35, 24 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
If n > 1 and n-1 is squarefree, then a(n) <= n-1. # Robert Israel, Apr 11 2023
LINKS
EXAMPLE
a(5) = 8 because A000005(8^8) = 25 is divisible by 5.
MAPLE
g:= proc(k) option remember;
local F, t;
F:= ifactors(k)[2];
mul(t[2]*k+1, t=F);
end proc:
f:= proc(n) local k;
for k from 1 do if g(k) mod n = 0 then return k fi od
end proc:
map(f, [$1..100]); # Robert Israel, Apr 11 2023
MATHEMATICA
Table[k = 1; While[! Divisible[DivisorSigma[0, k^k], n], k++]; k, {n, 73}] (* Michael De Vlieger, Aug 02 2016 *)
PROG
(PARI) a(n) = {my(k=1); while(numdiv(k^k) % n != 0, k++); k; }
CROSSREFS
Sequence in context: A368154 A331926 A070982 * A187153 A213265 A123649
KEYWORD
nonn,look
AUTHOR
Altug Alkan, Jul 31 2016
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 19 12:14 EDT 2024. Contains 371792 sequences. (Running on oeis4.)