n項の数を生成


34

2次数は、その素因数(多重度なし)がすべて平方根以下である正の整数です。4唯一の素因数は2であり、その平方根に等しいため、は二次数です。ただし、155平方根(~ 3.9)よりも大きい素因数であるため、二次数ではありません。すべての素数はそれ自体が素因数であるため、素数は二次数ではありません。最初のいくつかのセカンダリ番号は次のとおりです。

1, 4, 8, 9, 12, 16, 18, 24, 25, 27, 30, 32, 36, 40, 45, 48, 49, 50, 54, 56

三次数も同様に定義されますが、すべての素因数がその立方根以下でなければなりません。最初のいくつかの3次番号は次のとおりです。

1, 8, 16, 27, 32, 36, 48, 54, 64, 72, 81, 96, 108, 125, 128, 135, 144, 150, 160, 162

一般に、n進数は、その素因数がすべてそのn番目のルート以下であるものです。したがって、正の整数ある進数IFFその素因数のそれぞれ満たす。したがって、一次数はすべて正の整数(すべての素因数はそれ以下)であり、四次数はすべての素因数が4番目のルート以下である、などです。バツPのP NXnppnバツ

チャレンジ

整数kn入力として、k3 n進数を出力します。kインデックスは0または1のいずれか(選択)であり、n常に正になります。

これらは、10進数までの各シーケンスの最初の20個の要素です。

Primary: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20
Secondary: 1, 4, 8, 9, 12, 16, 18, 24, 25, 27, 30, 32, 36, 40, 45, 48, 49, 50, 54, 56
Tertiary: 1, 8, 16, 27, 32, 36, 48, 54, 64, 72, 81, 96, 108, 125, 128, 135, 144, 150, 160, 162
Quarternary: 1, 16, 32, 64, 81, 96, 108, 128, 144, 162, 192, 216, 243, 256, 288, 324, 384, 432, 486, 512
5-ary: 1, 32, 64, 128, 243, 256, 288, 324, 384, 432, 486, 512, 576, 648, 729, 768, 864, 972, 1024, 1152
6-ary: 1, 64, 128, 256, 512, 729, 768, 864, 972, 1024, 1152, 1296, 1458, 1536, 1728, 1944, 2048, 2187, 2304, 2592
7-ary: 1, 128, 256, 512, 1024, 2048, 2187, 2304, 2592, 2916, 3072, 3456, 3888, 4096, 4374, 4608, 5184, 5832, 6144, 6561
8-ary: 1, 256, 512, 1024, 2048, 4096, 6561, 6912, 7776, 8192, 8748, 9216, 10368, 11664, 12288, 13122, 13824, 15552, 16384, 17496
9-ary: 1, 512, 1024, 2048, 4096, 8192, 16384, 19683, 20736, 23328, 24576, 26244, 27648, 31104, 32768, 34992, 36864, 39366, 41472, 46656
10-ary: 1, 1024, 2048, 4096, 8192, 16384, 32768, 59049, 62208, 65536, 69984, 73728, 78732, 82944, 93312, 98304, 104976, 110592, 118098, 124416

回答:


10

ゼリー、12バイト

Æf*³<‘Ạ
1Ç#Ṫ

コマンドライン引数としてnk(1インデックス)を取ります。

オンラインでお試しください!

使い方

1Ç#Ṫ     Main link. Left argument: n. Right argument: k

1        Set the return value to 1.
 Ç#      Execute the helper link above for r = 1, 2, 3, ... until k of them return
         a truthy value. Yield the list of all k matches.
   Ṫ     Tail; extract the last match.


Æf*³<‘Ạ  Helper link. Argument: r

Æf       Compute all prime factors of r.
  *³     Elevate them to the n-th power.
    <‘   Compare all powers with r + 1.
      Ạ  All; return 1 if all comparisons were true, 0 if one or more were not.

ここでバイトを節約することはできませんが、右側のÆfṪ*³<‘要素が何らかの要因によって改ざんされるとわかっているので、私はまだふっくらしています。
ジョナサンアラン

6

Brachylog、21バイト

:[1]cyt
,1|,.$ph:?^<=

オンラインでお試しください!

この答えは1つのインデックスです。

説明

Input: [N:K]

:[1]cy              Retrieve the first K valid outputs of the predicate below with N as input
      t             Output is the last one

,1                  Output = 1
  |                 Or
   ,.$ph            Take the biggest prime factor of the Output
        :?^<=       Its Nth power is less than the Output

6

JavaScript(ES7)、95 90バイト

合理的に高速ですが、悲しいことに、再帰の最大数によって制限されます。

f=(k,n,i=1)=>(F=(i,d)=>i-1?d>1?i%d?F(i,d-1):F(i/d,x):1:--k)(i,x=++i**(1/n)|0)?f(k,n,i):i-1

使い方

整数iを因数分解し、そのすべての素因数がx = floor(i 1 / n)以下であることを検証するのではなく、後者の仮定を直接検証しようとします。それが内部関数F()の目的です:

F = (i, d) =>         // given an integer i and a divisor d:
  i - 1 ?             //   if the initial integer is not yet fully factored
    d > 1 ?           //     if d is still a valid candidate
      i % d ?         //       if d is not a divisor of i
        F(i, d - 1)   //         try again with d-1 
      :               //       else
        F(i / d, x)   //         try to factor i/d
    :                 //     else
      1               //       failed: yield 1
  :                   //   else
    --k               //     success: decrement k

私たちは、任意の整数かどうかを確認Dにおける[2私は... 1 / N ]除算。そうでない場合、仮定は無効であり、1を返します。はいの場合、失敗するまで、または初期整数が完全に因数分解されるまで(i == 1i = i / dでプロセスを再帰的に繰り返します。その場合、kをデクリメントします。次に、外部関数f()k == 0になるまで再帰的に呼び出されます

注:などの浮動小数点の丸め誤差の125**(1/3) == 4.9999…ため、xの実際の計算値はfloor((i + 1)1 / nです。

デモ

(ここでは、互換性を高めるために97バイトのES6バージョンを使用しています。)


6

JavaScript(ES7)、93 79バイト

f=(k,n,g=(i,j=2)=>i<2?--k?g(++m):m:j**n>m?g(++m):i%j?g(i,j+1):g(i/j,j))=>g(m=1)

私はArnauldの答えを理解できなかったので、自分で書いたので2バイト短くなりました。編集:@ETHproductionsの助けを借りて14バイトを保存しました。ゴルフをしていない:

function ary(k, n) {
    for (var c = 1;; c++) {
        var m = c;
        for (var i = 2; m > 1 && i ** n <= c; i++)
            while (m % i == 0) m /= i;
        if (m == 1 && --k == 0) return c;
    }
}

興味深いことに、バグに気づき、のような浮動小数点の丸めエラーのためで++i**(1/n)はなく、私がバグに気付いて評価することを決定する前に、私もちょうど93バイトでした。(それが書かれている方法、あなたのコードはこれに影響されないと思います。)i**(1/n)125**(1/3) == 4.999...
Arnauld

@ETHproductionsは実際に、私は...私はちょうど答えでそれを含めるのを忘れて、バイト数に含める思い出した
ニール・

@ETHproductionsは機能しているように見えますが、割り当てを移動mしてさらに2バイト削ります。
ニール

5

Haskell、86バイト

m#n=(0:1:filter(\k->last[n|n<-[2..k],all((>0).rem n)[2..n-1],k`rem`n<1]^n<=k)[2..])!!m

説明:

%%%%上の行のコードを示します)

    [n|n<-[2..k],all((>0).rem n)[2..n-1],k`rem`n<1]  -- generates all prime factors of k
    last%%%%^n<=k                                    -- checks whether k is n-ary
    (0:1:filter(\k->%%%%)[2..])!!m                   -- generates all n-ary nubmers and picks the m-th
     m#n=%%%%                                        -- assignment to the function #

filterラムダがほとんど役に立たない場合、リストの理解は通常短くなります:m#n=(0:1:[k|k<-[2..],last[n|n<-[2..k],all((>0).rem n)[2..n-1],krem n<1]^n<=k])!!m
nimi

0:インデックス付けは0から始まるため、を省略することもできます。
nimi

...さらに良い:m#n=[k|k<-[1..],last[n|n<-[1..k],all((>0).rem n)[2..n-1],kREMn<1]^n<=k]!!m
nimi

3

Pyth、13バイト

e.f.AgL@ZQPZE

オンラインでお試しください。

Jellyソリューションとまったく同じように機能します。

e.f.AgL@ZQPZE
                 Implicit: read n into Q.
            E    Read k.
 .f              Find the first k integers >= 1 for which
   .A            all
          P      prime factors of
           Z     the number
     gL          are at most
         Q       the n'th
       @         root of
        Z        the number.
e                Take the last one.

3

Perl 6、88バイト

->\k,\n{sub f(\n,\d){n-1??n%%d??f n/d,d!!f n,d+1!!d};(1,|grep {$_>=f($_,2)**n},2..*)[k]}

私の偶然の洞察は、のすべての要素を見る必要はないということです。n最大の要素だけを見る必要がありますf。これは内部関数が計算するものです。残念ながら、大きな入力でスタックを爆破します。

is-primeIntsで組み込みメソッドを使用して素数テストを追加すると、さらに数文字のコストがかかりますが、堅牢性は向上します。


3

、10バイト

!fS≤ȯ^⁰→pN

オンラインでお試しください!

説明

使用して把握する私にしばらく時間がかかった空のリストを返すに1代わりの-Infためのどの葉1(そうでないものは再びそれを付加するために2バイトの費用がかかるでしょう)、リスト内:

!fS≤(^⁰→p)N  -- input n as ⁰ and k implicit, for example: 4 3
!f        N  -- filter the natural numbers by the following predicate (example on 16):
  S≤(    )   --   is the following less than the element (16) itself?
        p    --   ..prime factors (in increasing order): [2]
       →     --   ..last element/maximum: 2
     ^⁰      --   ..to the power of n: 16
             --   16 ≤ 16: yes
             -- [1,16,32,64,81..
!            -- get the k'th element: 32

2

R、93バイト

f=function(k,n){x='if'(k,f(k-1,n)+1,1);while(!all(numbers::primeFactors(x)<=x^(1/n)))x=x+1;x}

ゼロインデックス。

これは再帰関数であり、次の番号が見つかるまで続けます。を使用しnumbersて素因数を検索します。


2

MATL、21バイト

x~`@YflG^@>~A+t2G<}x@

このソリューションでは、1ベースのインデックスを使用し、入力はそれぞれnおよびkです。

オンラインでお試しください!

説明

x       % Implicitly grab the first input and delete it
~       % Implicitly grab the second input and make it FALSE (0) (this is the counter)
`       % Beginning of the do-while loop
  @Yf   % Compute the prime factors of the current loop index
  1G^   % Raise them to the power of the first input
  @>    % Determine if each value in the array is greater than the current index
  ~A    % Yield a 0 if any of them were and a 1 if they weren't
  +     % Add this to the counter (increments only for positive cases)
  t2G<  % Determine if we have reached a length specified by the second input
}       % After we exit the loop (finally), ...
x@      % Delete the counter and push the current loop index to the stack
        % Implicitly display the result

ニースは、使用して~ 第二の入力:-)再利用するために
ルイスMendo

1

Brachylog v2、16バイト

{∧.ḋ,1⌉;?^≤}ᶠ⁽t

オンラインでお試しください!

功績デニスのゼリー液正しい方向に私の思考を取得するため。

説明

これは、解析が簡単な、わずかに未使用のバージョンです。

↰₁ᶠ⁽t
∧.ḋ,1⌉;?^≤

ヘルパー述語(2行目):入力は指数n、出力は制約なし:

∧           Break implicit unification
 .ḋ         Get the prime factors of the output
   ,1       Append 1 (necessary because 1 has no prime factors and you can't take
            the max of an empty list)
     ⌉      Max (largest prime factor, or 1 if the output is 1)
      ;?    Pair that factor with the input (n)
        ^   Take factor to the power of n
         ≤  Verify that the result is less than or equal to the output

メイン述語(1行目):入力は、インデックスk(1ベース)と指数nを含むリストです。出力は制約されていません:

  ᶠ⁽   Find the first k outputs of
↰₁     calling the helper predicate with n as input
    t  Get the last (i.e. kth) one

0

APL(NARS)、53文字、106バイト

r←a f w;c
c←0⋄r←1
→3×⍳∼∧/(πr)≤a√r⋄→0×⍳w≤c+←1
r+←1⋄→2

テスト:

  1 f¨1..20
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 
  2 f¨1..20
1 4 8 9 12 16 18 24 25 27 30 32 36 40 45 48 49 50 54 56 
  3 f¨1..20
1 8 16 27 32 36 48 54 64 72 81 96 108 125 128 135 144 150 160 162 
  4 f¨1..20
1 16 32 64 81 96 108 128 144 162 192 216 243 256 288 324 384 432 486 512 
  10 f¨1..20
1 1024 2048 4096 8192 16384 32768 59049 62208 65536 69984 73728 78732 82944 93312 98304 104976 110592 118098 124416 


弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.