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!)
A115561 a(n) = lpf((n/lpf(n))/lpf(n/lpf(n))), where lpf=A020639, least prime factor. 6

%I #25 Apr 11 2021 05:01:18

%S 1,1,1,1,1,1,1,2,1,1,1,3,1,1,1,2,1,3,1,5,1,1,1,2,1,1,3,7,1,5,1,2,1,1,

%T 1,3,1,1,1,2,1,7,1,11,5,1,1,2,1,5,1,13,1,3,1,2,1,1,1,3,1,1,7,2,1,11,1,

%U 17,1,7,1,2,1,1,5,19,1,13,1,2,3,1,1,3,1,1,1,2,1,3,1,23,1,1,1,2,1,7,11,5,1

%N a(n) = lpf((n/lpf(n))/lpf(n/lpf(n))), where lpf=A020639, least prime factor.

%C From _Peter Munn_, Jul 14 2019: (Start)

%C a(n) = 1 if and only if n is 1 or a prime or semiprime. Otherwise a(n) is the 3rd factor when n is written as a product of primes in nondecreasing order. For example, 60 = 2*2*3*5, so a(60) = 3.

%C Although values equal to 1 are predominant at low indices, their asymptotic density is 0, whereas for values equal to prime(k) for k > 0 the asymptotic density is positive, namely A281890(k,3)/A002110(k)^3. For all sufficiently large n the median value of a(1), a(2), ... a(n) is A281889(3) = 433.

%C (End)

%H Antti Karttunen, <a href="/A115561/b115561.txt">Table of n, a(n) for n = 1..10000</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/LeastPrimeFactor.html">Least Prime Factor</a>

%F a(n) = A020639(A054576(n)).

%F If A001222(n) >= 3, a(n) = A027746(n,3), otherwise a(n) = 1. - _Peter Munn_, Jul 13 2019

%t f[n_] := FactorInteger[n][[1, 1]]; Table[f[#/f@ #] &[n/f@ n], {n, 101}] (* _Michael De Vlieger_, Aug 14 2017 *)

%o (Python)

%o from sympy import divisors, primefactors

%o def a032752(n): return 1 if n==1 else divisors(n)[-2]

%o def a020639(n): return 1 if n==1 else primefactors(n)[0]

%o def a(n): return a020639(a032752(a032752(n)))

%o print([a(n) for n in range(1, 102)]) # _Indranil Ghosh_, Aug 12 2017

%o (PARI) a020639(n) = if(n>1, if(n>n=factor(n, 0)[1, 1], n, factor(n)[1, 1]), 1) \\ after _M. F. Hasler_ in A020639

%o a(n) = a020639((n/a020639(n))/a020639(n/a020639(n))) \\ _Felix Fröhlich_, Jul 15 2019

%Y Cf. A001222, A002110, A014673, A020639, A027746, A032742, A054576, A117358, A281889, A281890.

%K nonn

%O 1,8

%A _Reinhard Zumkeller_, Mar 10 2006

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 25 13:38 EDT 2024. Contains 371970 sequences. (Running on oeis4.)