Zahlen mit ähnlichen Kräften

17

Finden Sie bei einer ganzen Zahl p> 1 die kleinste ganze Zahl q> p, so dass die Liste der Exponenten in der Primfaktorisierung von q dieselbe ist wie die von p , unabhängig von der Reihenfolge oder dem Wert der Primfaktoren.

Beispiele

Die Primfaktorisierung von p = 20 ist 2 2 x 5 1 . Die kleinste ganze Zahl größer als p mit identischen Exponenten in ihrer Primfaktorisierung ist q = 28 = 2 2 x 7 1 .

Die Primfaktorisierung von p = 2500 ist 2 2 x 5 4 . Die kleinste ganze Zahl größer als p mit identischen Exponenten in ihrer Primfaktorisierung ist q = 2704 = 2 4 x 13 2 .

Regeln

  • Die Eingabe ist garantiert eine ganze Zahl größer als 1.
  • Das ist , also gewinnt die kürzeste Antwort in Bytes.

Testfälle

Input | Output
------+-------
2     | 3
20    | 28
103   | 107
256   | 6561
768   | 1280
2500  | 2704
4494  | 4510
46552 | 46584
75600 | 105840
Arnauld
quelle
2
Nur als Referenz, dies ist A081761 im OEIS.
Jonathan Frech

Antworten:

9

Schale , 10 Bytes

§ḟ¤≡ȯÖLgp→

Probieren Sie es online!

Erklärung

§ḟ       →     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.
H.PWiz
quelle
5

Mathematica, 61 Bytes

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

Probieren Sie es online!

-4 Bytes von @Misha Lavrov

J42161217
quelle
Eine präzisere Art, eine solche WhileSchleife zu schreiben , ist s=#;While[f@++s!=f@#];s.
Mischa Lawrow
1
Sie können ersetzen f[x_]mit f@x_einem Byte zu speichern.
Numbermaniac
1
Oder gehen Sie sogar den Kompositionssalat-Weg der Definition f=Last/@#&@*FactorInteger/*Sort.
Mischa Lawrow
4

Pyth , 15 Bytes

fqFmShMrPd8,QTh

Probieren Sie es hier aus! oder Überprüfen Sie alle Testfälle.

Wie funktioniert das?

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.

Alternativen

Ein weiterer 15-Byte:

LShMrPb8fqyQyTh

Und ein paar (längere) Alternativen:

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

Brachylog , 13 Bytes

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

Probieren Sie es online!

Es ist lange her, dass ich eine Antwort gepostet habe ...

Erläuterung

<.               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
Tödlich
quelle
4

Python 2 , 176 179 171 170 169 Bytes

  • Es wurden drei Bytes hinzugefügt, als sich die Frage von Exponenten zu Exponentenlisten änderte . set(f)wurde geändert in sorted(f).
  • Acht Bytes dank ovs gespart ; Golfen Sie den if / else-Block bis zur Multiplikation.
  • Ein Byte gespeichert; golfen (n!=r)zu (n>r).
  • Ein Byte gespeichert; golfen while N>1zu 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

Probieren Sie es online!

Jonathan Frech
quelle
3

Haskell , 107 Bytes

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

Probieren Sie es online! Anwendungsbeispiel: f 2500Erträge 2704.

Vielen Dank an nimi, der auf einen Fehler hingewiesen und ein paar Bytes gespart hat.


Ohne primeFactorseingebautes (117 Bytes)

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

Probieren Sie es online!

Laikoni
quelle
2

Python - 141 Bytes

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
Maltysen
quelle
Ihr Programm scheint den falschen Wert 2500als Eingabe auszugeben . 4624statt 2704.
Jonathan Frech
while n-1:kann sein while~-n:.
Jonathan Frech
2

05AB1E , 15 Bytes

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

Probieren Sie es online!

Erläuterung

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
Emigna
quelle
1

Python 3 + Sympy , 118 Byte

from sympy.ntheory import*
f=lambda k:sorted(factorint(k).values())
g=lambda i,k=2:i<k and f(k)==f(i)and k or g(i,k+1)

Probieren Sie es online!

Mr. Xcoder
quelle