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!)
A340268 Composite numbers k>1 such that (s-1) | (d-1) for each d | k, where s = lpf(k) = A020639(k). 1

%I #43 Feb 16 2021 13:33:41

%S 4,6,8,9,10,12,14,15,16,18,20,21,22,24,25,26,27,28,30,32,33,34,36,38,

%T 39,40,42,44,45,46,48,49,50,51,52,54,56,57,58,60,62,63,64,65,66,68,69,

%U 70,72,74,75,76,78,80,81,82,84,85,86,87,88,90,91,92,93,94,96

%N Composite numbers k>1 such that (s-1) | (d-1) for each d | k, where s = lpf(k) = A020639(k).

%C Not a duplicate of A340058 because the complements A335902 and A340269 differ. - _R. J. Mathar_, Feb 16 2021

%p with(numtheory):

%p q:= n-> (f-> andmap(d-> irem(d-1, f)=0, divisors(n)))(min(factorset(n))-1):

%p select(not isprime and q, [$2..96])[]; # _Alois P. Heinz_, Feb 12 2021

%t Select[Range[2, 96], Function[{n, s}, And[! PrimeQ@ n, AllTrue[Divisors[n] - 1, Mod[#, s] == 0 &]]] @@ {#, FactorInteger[#][[1, 1]] - 1} &] (* _Michael De Vlieger_, Feb 12 2021 *)

%o (MATLAB)

%o n=300; % gives all terms of the sequence not exceeding n

%o A=[];

%o for i=2:n

%o lpf=2;

%o while mod(i,lpf)~=0

%o lpf=lpf+1;

%o end

%o for d=1:floor(i/2)

%o if mod(i,d)==0 && mod(d-1,lpf-1)~=0

%o break

%o elseif d==floor(i/2)

%o A=[A i];

%o end

%o end

%o end

%o (PARI) isok(c) = if ((c>1) && !isprime(c), my(f=factor(c)[,1]); for (k=1, #f~, if ((f[k]-1) % (f[1]-1), return(0))); return(1)); \\ _Michel Marcus_, Jan 03 2021

%Y Cf. A000010, A000961, A020639, A340058, A335902, A340269 (complement).

%Y Contains all composite terms of at least A003586, A003591, A003592, A003593, A003596.

%K nonn

%O 1,1

%A _Maxim Karimov_, Jan 02 2021

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 24 06:24 EDT 2024. Contains 371918 sequences. (Running on oeis4.)