Numeri con poteri simili


17

Dato un numero intero p> 1 , trova il numero intero più piccolo q> p in modo tale che l'elenco degli esponenti nella scomposizione in fattori primi di q sia lo stesso di quello di p , indipendentemente dall'ordine o dal valore dei fattori primi.

Esempi

La scomposizione in fattori primi di p = 20 è 2 2 x 5 1 . Il numero intero più piccolo maggiore di p con esponenti identici nella sua scomposizione in fattori primi è q = 28 = 2 2 x 7 1 .

La scomposizione in fattori primi di p = 2500 è 2 2 x 5 4 . Il numero intero più piccolo maggiore di p con identici esponenti nella sua scomposizione in fattori primi è q = 2704 = 2 4 x 13 2 .

Regole

  • L'ingresso è garantito per essere un numero intero maggiore di 1.
  • Questo è , quindi vince la risposta più breve in byte.

Casi test

Input | Output
------+-------
2     | 3
20    | 28
103   | 107
256   | 6561
768   | 1280
2500  | 2704
4494  | 4510
46552 | 46584
75600 | 105840

2
Solo per riferimento, questo è A081761 nell'OEIS.
Jonathan Frech,

Risposte:


9

Buccia , 10 byte

§ḟ¤≡ȯÖLgp→

Provalo online!

explantion

§ḟ       →     Find the first number starting from the input + 1 such that...
        p        The prime factorisation
       g         with equal elements grouped together
    ȯÖL          and sorted by length of groups
  ¤≡             has the same shape as the above applied to the input.

5

Mathematica, 61 byte

(f[x_]:=Sort[Last/@FactorInteger@x];s=#;While[f@++s!=f@#];s)&  

Provalo online!

-4 byte da @Misha Lavrov


Un modo più conciso di scrivere un tale Whileciclo è s=#;While[f@++s!=f@#];s.
Misha Lavrov,

1
È possibile sostituire f[x_]con f@x_per salvare un byte.
numbermaniac

1
O addirittura seguire il percorso di composizione-insalata di definizione f=Last/@#&@*FactorInteger/*Sort.
Misha Lavrov,

4

Pyth , 15 byte

fqFmShMrPd8,QTh

Provalo qui! oppure Verifica tutti i casi di test.

Come funziona?

fqFmShMrPd8,QTh   ~ Full program. Q = first input.

f             h   ~ First input where the condition is truthy over [Q+1, Q+2, ...]
           ,QT    ~ The two element list [Q, current value (T)].
   m              ~ Map over ^ with d.
       Pd         ~ The prime factorization of d.
      r  8        ~ Run-Length encode ^.
    hM            ~ Get the first element of each.
 qF               ~ Check if the values are equal.
                  ~ Output implicitly.

alternative

Un altro 15-byte:

LShMrPb8fqyQyTh

E un paio di alternative (più lunghe):

fqFmSlM.gkPd,QTh
LSlM.gkPbfqyQyTh
LS/LPb{PbfqyQyTh
f!-FmlM.gkPd,QTh


4

Brachylog , 13 byte

<.;?{ḋḅlᵐ}ᵐ=∧

Provalo online!

È passato molto tempo da quando ho pubblicato una risposta ...

Spiegazione

<.               Input < Output
 .;?             The list [Output, Input]
    {    }ᵐ      Map on [Output, Input]:
     ḋ             Prime decomposition
      ḅ            Group into sublists of consecutive equal elements
       lᵐ          Take the length of each sublist
           =∧    The result of the map must be the same for the Output and the Input

4

Python 2 , 176 179 171 170 169 byte

  • Aggiunto tre byte come la questione è cambiato da insieme di esponenti alla lista di esponenti ; set(f)è stato cambiato in sorted(f).
  • Risparmiato otto byte grazie agli ovs ; giocare a golf il blocco if / else fino alla moltiplicazione.
  • Salvato un byte; golf (n!=r)a (n>r).
  • Salvato un byte; golf while N>1a while~-N.
N=input();n=-~N
def F(N):
 r,f=0,[]
 while~-N:
	for n in range(2,-~N):
	 if N%n<1:f+=[1]*(n>r);f[-1]+=n==r;r=n;N/=n;break
 return sorted(f)
while F(N)!=F(n):n+=1
print n

Provalo online!


3

Haskell , 107 byte

import Data.List
import Data.Numbers.Primes
p=sort.map(1<$).group.primeFactors
f x=until((==p x).p)(+1)$x+1

Provalo online! Esempio di utilizzo: f 2500rese 2704.

Grazie a nimi per aver segnalato un difetto e aver salvato un sacco di byte.


Senza primeFactorsbuild-in (117 byte)

import Data.List
1%n=[]
x%n|0<-mod x n=n:div x n%n|m<-n+1=x%m
p=sort.map(1<$).group.(%2)
f x=until((==p x).p)(+1)$x+1

Provalo online!


2

Python - 141 byte

def s(n):
 i=1;d={}
 while n-1:
  i+=1
  if n%i<1:d[i]=d.get(i,0)+1;n/=i;i=1
 return d.values()
a=input()
j=a+1
while s(a)!=s(j):j+=1
print j

Il tuo programma sembra fornire un valore errato 2500come input; 4624invece di 2704.
Jonathan Frech,

while n-1:può essere while~-n:.
Jonathan Frech,

2

05AB1E , 15 byte

XµN‚εÓ0K{}ËNI›&

Provalo online!

Spiegazione

Xµ                # Loop over N in [0 ...] until 1 match is found
  N‚              # pair N with input
    ε    }        # apply to each
     Ó            # list prime exponents
      0K          # remove zeroes
        {         # sort
          Ë       # check that they are equal
              &   # and
           NI›    # that N is greater than the input

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.