login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A072865
Smallest k > 1 dividing tau(k*n) (cf. A000005).
1
2, 4, 2, 2, 2, 2, 2, 10, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 10, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2
OFFSET
1,1
COMMENTS
Sequence contains the values 2,3,4,5,6,7,8,9,10,11,12. The smallest x such that a(x)=12 is x = 32768 = 2^15.
LINKS
MATHEMATICA
a[n_] := Module[{k = 2}, While[!Divisible[DivisorSigma[0, k*n], k], k++]; k]; Array[a, 100] (* Amiram Eldar, Jun 03 2022 *)
PROG
(PARI) A072865(n) = for(k=2, oo, if(!(numdiv(k*n)%k), return(k))); \\ Antti Karttunen, Sep 27 2018
CROSSREFS
Cf. A000005.
Sequence in context: A194564 A284690 A064132 * A364002 A322728 A179686
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Jul 27 2002
STATUS
approved