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!)
A322445 Smallest positive integer m such that n divides A297707(m). 0

%I #12 Jan 07 2019 14:35:12

%S 1,2,3,4,5,3,7,4,3,5,11,4,13,7,5,4,17,3,19,5,7,11,23,4,5,13,6,7,29,5,

%T 31,4,11,17,7,5,37,19,13,5,41,7,43,11,5,23,47,4,7,5,17,13,53,6,11,7,

%U 19,29,59,5,61,31,7,4,13

%N Smallest positive integer m such that n divides A297707(m).

%C If p is prime, a(p) = p.

%C The first three integers n for which a(n!) is not a prime number are: 1 (a(1!) = 1), 4 (a(4!) = 4), 10 (a(10!) = 8). Is there a larger n? If such a number n exists, it is greater than 2000.

%C The smallest integer n satisfying the equation a(n) = a(n+1) is 2400 (a(2400) = a(2401) = 7). Is there a larger n? If such a number n exists, it is greater than 3000.

%H J. Sondow and E. W. Weisstein, <a href="http://mathworld.wolfram.com/SmarandacheFunction.html">MathWorld: Smarandache Function</a>

%e a(12) = 4 because 12 is not divisible by A297707(1) = 1, A297707(2) = 2*1, A297707(3) = 3*2*1*3*1, and is divisible by A297707(4) = 4*3*2*1*4*2*4*1.

%t f[n_] := n^(n - 1) * Product[k^DivisorSigma[0, n - k], {k, n - 1}]; a[n_] := Module[{k = 1}, While[! Divisible[f[k], n], k++]; k]; Array[a, 60] (* _Amiram Eldar_, Dec 08 2018 *)

%o (PARI) f(n) = (n^(n-1))*prod(k=1, n-1, k^numdiv(n-k)); \\ A297707

%o a(n) = {my(k=1); while (f(k) % n, k++); k;} \\ _Michel Marcus_, Dec 09 2018

%Y Cf. A002034, A007922, A063917.

%K nonn

%O 1,2

%A _Lechoslaw Ratajczak_, Dec 08 2018

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 02:01 EDT 2024. Contains 371782 sequences. (Running on oeis4.)