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!)
A355467 a(n) is the smallest number which is greater than n and has more prime factors (with multiplicity) than n. 1

%I #22 May 05 2023 07:57:18

%S 2,4,4,8,6,8,8,16,12,12,12,16,14,16,16,32,18,24,20,24,24,24,24,32,27,

%T 27,32,32,30,32,32,64,36,36,36,48,38,40,40,48,42,48,44,48,48,48,48,64,

%U 50,54,52,54,54,64,56,64,60,60,60,64,62,63,64,128,66,72,68,72,70,72,72,96,74,75,80,80,78,80,80,96,96

%N a(n) is the smallest number which is greater than n and has more prime factors (with multiplicity) than n.

%C Distinct from 2^A073093 because of the proviso that a(n) > n and bigomega(a(n)) > bigomega(n).

%F a(2^n) = 2^(n+1) because the smallest extra factor is 2.

%F a(3*2^n) = 2^(n+2) because 4 (i.e., 2^2) is the next biggest pair of factors.

%e For n = 1, a(1) = 2, since 2 is the first number satisfying 2 > 1 and bigomega(2) = 1 > bigomega(1) = 0.

%e For n = 5, a(5) = 8, since 8 is the first number satisfying 8 > 5 and bigomega(8) = 3 > bigomega(5) = 1.

%e For n = 12, a(12) = 16, since 16 is the first number satisfying 16 > 12 and bigomega(16) = 4 > bigomega(12) = 3.

%p A355467 := proc(n)

%p local a,nOmega ;

%p nOmega := A001222(n) ;

%p for a from n+1 do

%p if A001222(a) > nOmega then

%p return a;

%p end if;

%p end do;

%p end proc:

%p seq(A355467(n),n=1..80) ; # _R. J. Mathar_, May 05 2023

%o (Haskell)

%o import Data.Numbers.Primes

%o result :: [Integer]

%o result = fmap (

%o \n -> head (

%o dropWhile (

%o \m -> length (primeFactors m :: [Integer]) <= length (primeFactors n :: [Integer])

%o )

%o [n..]

%o )

%o ) [1..]

%o (PARI) a(n) = my(k=n+1, nb=bigomega(n)); while (bigomega(k) <= nb, k++); k; \\ _Michel Marcus_, Jul 05 2022

%Y Cf. A073093, A001222.

%K nonn

%O 1,1

%A _Dan Dart_, Jul 03 2022

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 10:56 EDT 2024. Contains 371791 sequences. (Running on oeis4.)