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!)
A340302 Numbers k such that k and the least number that is larger than k and has the same prime signature as k also has the same set of distinct prime divisors as k. 4

%I #9 Jan 06 2021 01:56:12

%S 12,72,144,420,432,540,864,1728,1800,2000,2268,2520,2592,5184,5400,

%T 6300,7020,10125,10368,10692,10800,11340,12600,15120,15552,16200,

%U 17640,20000,20736,21168,21600,24000,24948,25200,26460,31104,37800,40500,41472,42750,43200

%N Numbers k such that k and the least number that is larger than k and has the same prime signature as k also has the same set of distinct prime divisors as k.

%C Numbers k such that A007947(k) = A007947(A081761(k)).

%C This sequence is infinite since it includes all the numbers of the form 2*6^k for k>=1.

%H Amiram Eldar, <a href="/A340302/b340302.txt">Table of n, a(n) for n = 1..500</a>

%H <a href="/index/Pri#prime_signature">Index entries for sequences related to prime signature</a>

%e 12 = 2^2 * 3 is a term since the least number that is larger than 12 and has the same prime signature as 12 is 18 = 2 * 3^2 which also has the same set of distinct prime divisors as 12, {2, 3}.

%t sig[n_] := Sort@FactorInteger[n][[;; , 2]]; nextsig[n_] := Module[{sign = sig[n], k = n + 1}, While[sig[k] != sign, k++]; k]; rad[n_] := Times @@ FactorInteger[n][[;; , 1]]; Select[Range[2, 1000], rad[#] == rad[nextsig[#]] &]

%Y Cf. A007947, A081761, A085079, A089247, A118914, A167747.

%K nonn

%O 1,1

%A _Amiram Eldar_, Jan 03 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 25 12:33 EDT 2024. Contains 371969 sequences. (Running on oeis4.)