คำนวณหมายเลข MU


19

หมายเลข MU สองหมายเลขแรกคือ 2 และ 3 หมายเลข MU อื่น ๆ ทุกหมายเลขคือหมายเลขที่เล็กที่สุดที่ยังไม่ปรากฏซึ่งสามารถแสดงเป็นผลิตภัณฑ์ของหมายเลข MU ที่แตกต่างกันสองรุ่นก่อนหน้าในวิธีเดียว

นี่คือ 10 อันดับแรก

2, 3, 6, 12, 18, 24, 48, 54, 96, 162

งาน

รับจำนวนบวกคำนวณและส่งออกn th MU

นี่คือการแข่งขันดังนั้นคุณควรตั้งเป้าหมายให้ซอร์สโค้ดของคุณเล็กที่สุด

OEIS A007335


1
0 การจัดทำดัชนีหรือการจัดทำดัชนี 1?
HyperNeutrino

1
@HperperNeutrino อาจเป็นได้
ข้าวสาลีตัวช่วยสร้าง

2
ความคิดใดว่าทำไมสิ่งเหล่านี้เรียกว่าหมายเลข MU? (การคาดเดาป่า: การคูณซ้ำกันหรือไม่?)

คำตอบ:


5

Pyth, 22 21 ไบต์

@u+Gfq2l@GcLTGheGQhB2

ลองออนไลน์ ชุดทดสอบ

0 การจัดทำดัชนี

คำอธิบาย

@u+Gfq2l@GcLTGheGQhB2Q    Implicitly append Q and read+eval input to it.
                  hB2     Take the list [2, 2 + 1].
 u               Q        Put the list in G and apply this Q times:
               eG           Get last number in G.
              h             Add one.
    f                       Starting from that, find the first T such that:
          cLTG                Divide T by each of the numbers in G.
        @G                    Find the quotients that are also in G.
       l                      Get the number of such quotients.
     q2                       Check that it equals 2.
  +G                        Append that T to G.
@                    Q    Get the Q'th number in G.

@สัญญาณในบรรทัดสุดท้ายคือ misaligned ฉันไม่สามารถทำการแก้ไขที่แนะนำได้เนื่องจากเป็นการเปลี่ยนแปลงอักขระ 2 ตัว
user2357112 รองรับ Monica

@ user2357112 แก้ไขแล้ว
PurkkaKoodari

4

Haskell, 80 77 ไบต์

l#(a:b)|[x]<-[a|i<-l,j<-l,i<j,i*j==a]=a:(a:l)#b|1<2=l#b
((2:3:[2,3]#[4..])!!)

ลองออนไลน์!

มันทำงานอย่างไร

2:3:             -- start the list with 2 and 3 and append a call to # with
    [2,3]        -- the list so far and
         #[4..]  -- list of candidate elements

l # (a:b)        -- l -> list so far, a -> next candidate element, b -> rest c.el.
  | [x]<-[...]   -- if the list [...] is a singleton list
    =a:(a:l#b) -- the result is a followed by a recursive call with l extended
                    by a and b
  | 1<2=l#b      -- if it's not a singleton list, drop a and retry with b

                 -- the [...] list is
 [ i<-l,j<-l,    -- loop i through l and j through l and whenever   
       i<j,      -- i<j and
       i*j==a]   -- i*j==a
  a|             -- add a to the list              

3

เยลลี่ , 22 ไบต์

ŒcP€ḟ⁸ṢŒgLÞḢḢṭ
2,3Ç¡ị@

ลิงก์แบบ monadic ซึ่งมีดัชนี 1 ดัชนี

ลองออนไลน์!

อย่างไร?

ŒcP€ḟ⁸ṢŒgLÞḢḢṭ - Link 1, add the next number: list, a  e.g. [2,3,6,12,18,24]
Œc             - unordered pairs                            [[2,3],[2,6],[2,12],[2,18],[2,24],[3,6],[3,12],[3,18],[3,24],[6,12],[6,18],[6,24],[12,18],[12,24],[18,24]]
  P€           - product of €ach                            [6,12,24,36,48,18,36,54,72,72,108,144,216,288,432]
     ⁸         - chain's left argument, a                   [2,3,6,12,18,24]
    ḟ          - filter discard                             [36,48,36,54,72,72,108,144,216,288,432]
      Ṣ        - sort                                       [36,36,48,54,72,72,108,144,216,288,432]
       Œg      - group runs of equal elements               [[36,36],[48],[54],[72,72],[108],[144],[216],[288],[432]]
          Þ    - sort by:
         L     -   length                                   [[48],[54],[108],[144],[216],[288],[432],[36,36],[72,72]]
           Ḣ   - head                                       [48]
            Ḣ  - head                                       48
             ṭ - tack to a                                  [2,3,6,12,18,24,48]

2,3Ç¡ị@ - Link: number, i                              e.g. 7
2,3     - literal [2,3]                                     [2,3]
    ¡   - repeat i times:
   Ç    -   call last link (1) as a monad                   [2,3,6,12,18,24,48,54,96]
     ị@ - index into with swapped @rguments (with i)        48

3

R , 127 118 111 108 105 100 98 90 ไบต์

8 ไบต์ขอบคุณ Giuseppe

r=3:2;for(i in 1:scan())r=c(min((g=(r%o%r)[i:-1<i])[colSums(g%o%g==g*g)+g%in%r<3]),r);r[3]

ลองออนไลน์!


ฉันต้องใช้เวลาตลอดไปในการตระหนักว่า<มีลำดับความสำคัญต่ำกว่า+ดังนั้นฉันจึงไม่สามารถเข้าใจได้ว่า+g%in%r<3เกิดอะไรขึ้นในขณะที่ฉันกำลังทำอยู่และในขณะที่ฉันกำลังทำเช่นนั้นคุณเล่นกอล์ฟสองส่วนที่ฉันจะแนะนำ ... +1
Giuseppe

@Giuseppe ฉันเพิ่งเริ่มเรียนรู้ R วันนี้ ... ดีใจที่ได้พบนักกอล์ฟ R ที่เหมาะสม
Leun Nun

ฉันจะพูดแบบเดียวกันกับคุณ .............
Giuseppe

อ่าอีกอย่างหนึ่งคุณสามารถใช้n=scan()แทนนิยามฟังก์ชั่นเพื่ออ่านจาก stdin; ที่คุณจะได้รับต่ำกว่า 100
จูเซปเป้

ล้มเหลวในการป้อนข้อมูล:0
ระแหง

2

CJam (32 ไบต์)

4,{_2m*{~>},::*1$-$e`$0=|}qi*-2=

การสาธิตออนไลน์พร้อมการจัดทำดัชนี 0

ฉันไม่แน่ใจว่าจะต้องทำอะไรมากไปกว่าการแปลข้อมูลจำเพาะด้วยข้อยกเว้นเดียว: โดยเริ่มจากรายการ[0 1 2 3](แทน[2, 3]) ฉันบันทึกหนึ่งไบต์ทันทีในการเริ่มต้นและอีกสองสามารถทำได้0=|(เพิ่มเพียง องค์ประกอบใหม่เนื่องจากความถี่เป็น1และมีอยู่แล้วในรายการ) แต่ไม่แนะนำองค์ประกอบเท็จใด ๆ เพราะสำหรับทุกxรายการ0*xและ1*xอยู่ในรายการแล้ว



1

Mathematica, 154 ไบต์

การแก้ไขง่าย ๆ ของรหัสที่ลิงค์ oeis

(s={2,3};Do[n=Select[Split@Sort@Flatten@Table[s[[j]]s[[k]],{j,Length@s},{k,j+1,Length@s}],#[[1]]>s[[-1]]&&Length@#==1&][[1,1]];AppendTo[s,n],{#}];s[[#]])&

1

PHP , 130 ไบต์

0 การจัดทำดัชนี

for($r=[2,3];!$r[$argn];$r[]=$l=min($m)/2){$m=[];foreach($r as$x)foreach($r as$y)($p=$x*$y)<=$l|$y==$x?:$m[$p]+=$p;}echo$r[$argn];

ลองออนไลน์!

ขยาย

for($r=[2,3];!$r[$argn]; #set the first to items and loop till search item exists
$r[]=$l=min($m)/2){ # add the half of the minimum of found values to the result array
  $m=[]; # start with empty array
  foreach($r as$x) # loop through result array
    foreach($r as$y) # loop through result array
      ($p=$x*$y)<=$l|$y==$x? # if product is greater as last value and we do multiple two distinct values
        :$m[$p]+=$p; # add 2 times or more the product to array so we drop 36 cause it will be 144  
}
echo$r[$argn]; # Output 

PHP , 159 ไบต์

0 การจัดทำดัชนี

for($r=[2,3];!$r[$argn];$r[]=$l=min(array_diff_key($m,$d))){$d=$m=[];foreach($r as$x)foreach($r as$y)$x<$y?${dm[$m[$p=$x*$y]<1&$p>$l]}[$p]=$p:0;}echo$r[$argn];

ลองออนไลน์!

PHP , 161 ไบต์

0 การจัดทำดัชนี

for($r=[2,3];!$r[$argn];$r[]=$l=min(array_diff($m,$d))){$d=$m=[];foreach($r as$x)foreach($r as$y)$x<$y?${dm[!in_array($p=$x*$y,$m)&$p>$l]}[]=$p:0;}echo$r[$argn];

ลองออนไลน์!


1

Mathematica, 140 ไบต์

(t=1;s={2,3};While[t<#,s=AppendTo[s,Sort[Select[First/@Select[Tally[Times@@@Permutations[s,{2}]],#[[2]]==2&],#>Last@s&]][[1]]];t++];s[[#]])&

1

MATL , 25 ไบต์

3:i:"t&*9B#u2=)yX-X<h]2_)

ลองออนไลน์!

คำอธิบาย

3:     % Push [1 2 3]. Initial array of MU numbers, to be extended with more numbers
i:     % Input n. Push [1 2 ... n]
"      % Do this n times
  t    %   Duplicate array of MU numbers so far
  &*   %   Matrix of pair-wise products
  9B   %   Push 9 in binary, that is, [1 0 0 1]
  #    %   Specify that next function will produce its first and fourth ouputs
  u    %   Unique: pushes unique entries (first output) and their counts (fourth)
  2=   %   True for counts that equal 2
  )    %   Keep only unique entries with count 2
  y    %   Duplicate (from below) array of MU numbers so far
  X-   %   Set difference
  X<   %   Minimum. This is the new MU number
  h    %   Concatenate vertically horizontally to extend the array
]      % End
2_     % Push 2 negated, that is, -2
)      % Get entry at position -2, that is, third-last. Implicitly display

1

Perl 6 , 96 ไบต์

{(2,3,{first *∉@_,@_.combinations(2).classify({[*]
$_}).grep(*.value==1)».key.sort}...*)[$_]}

ลองออนไลน์!

  • 2, 3, { ... } ... *เป็นลำดับที่ไม่มีที่สิ้นสุดซึ่งแต่ละองค์ประกอบที่ขึ้นต้นด้วยอันดับที่สามจะถูกคำนวณโดยบล็อกรหัสวงเล็บปีกกา ตั้งแต่บล็อกรหัสใช้อาร์กิวเมนต์ของมันผ่านทาง slurpy@_อาร์เรย์จึงได้รับลำดับปัจจุบันทั้งหมดในอาร์เรย์นั้น
  • @_.combinations(2) เป็นลำดับของการรวมกัน 2 องค์ประกอบทั้งหมดของ @_องค์ประกอบของ
  • .classify({ [*] $_ }) จำแนกแต่ละ 2-tuple โดยผลิตภัณฑ์ของตนผลิตแฮชซึ่งผลิตภัณฑ์เป็นกุญแจและค่าคือรายการของ 2-tuples ที่มีผลิตภัณฑ์นั้น
  • .grep(*.value == 1) เลือกคู่คีย์ - ค่าเหล่านั้นจากแฮชที่ค่า (เช่นรายการของคู่ที่มีคีย์นั้นเป็นผลิตภัณฑ์) มีขนาด 1
  • ».keyเลือกคีย์ของแต่ละคู่เท่านั้น นี่คือรายการของผลิตภัณฑ์ที่เกิดขึ้นจากการรวมกันของปัจจัยในลำดับปัจจุบันเท่านั้น
  • .sort เรียงลำดับผลิตภัณฑ์เป็นตัวเลข
  • first * ∉ @_, ... ค้นหาผลิตภัณฑ์แรกของเหล่านั้นที่ไม่ได้ปรากฏในลำดับ

1

JavaScript (ES6), 119 118 117 ไบต์

ฟังก์ชันเรียกซ้ำที่ใช้ดัชนีเป็นฐาน 0

f=(n,a=[2,m=3])=>a[n]||a.map(c=>a.map(d=>c<d&(d*=c)>m?b[d]=b[d]/0||d:0),b=[])|f(n,a.push(m=b.sort((a,b)=>a-b)[0])&&a)

อย่างไร?

ในแต่ละการวนซ้ำของf ()เราใช้เทอมสุดท้ายmของลำดับและอาเรย์แรกว่างbเพื่อระบุคำถัดไป สำหรับแต่ละผลิตภัณฑ์d> mของสองหมายเลข MU ที่แตกต่างกันก่อนหน้านี้เราทำ:

b[d] = b[d] / 0 || d

แล้วเก็บค่าต่ำสุดของข

การแสดงออกด้านบนได้รับการประเมินดังนี้:

b[d]               | b[d] / 0  | b[d] / 0 || d
-------------------+-----------+--------------
undefined          | NaN       | d
already equal to d | +Infinity | +Infinity
+Infinity          | +Infinity | +Infinity

สิ่งนี้รับประกันได้ว่าผลิตภัณฑ์ที่สามารถแสดงออกได้มากกว่าหนึ่งวิธีจะไม่ถูกเลือก

จัดรูปแบบและแสดงความคิดเห็น

f = (n, a = [2, m = 3]) =>           // given: n = input, a[] = MU array, m = last term
  a[n] ||                            // if a[n] is defined, return it
  a.map(c =>                         // else for each value c in a[]:
    a.map(d =>                       //   and for each value d in a[]:
      c < d &                        //     if c is less than d and
      (d *= c) > m ?                 //     d = d * c is greater than m:
        b[d] = b[d] / 0 || d         //       b[d] = either d or +Infinity (see 'How?')
      :                              //     else:
        0                            //       do nothing
    ),                               //   end of inner map()
    b = []                           //   initialization of b[]
  ) |                                // end of outer map()
  f(                                 // do a recursive call:
    n,                               //   - with n
    a.push(                          //   - push in a[]:
      m = b.sort((a, b) => a - b)[0] //     m = minimum value of b[]
    ) && a                           //     and use a[] as the 2nd parameter
  )                                  // end of recursive call

การสาธิต


0

Haskell , 117 115 113 ไบต์

n x=[a*b|[a,b]<-mapM id[1:x,x]]
d x=minimum[a|a<-n x,2==sum[1|b<-n x,b==a]]:x
l x|x<3=x+1:[2]|1>0=d$l$x-1
(!!0).l

ลองออนไลน์!


บรรทัดแรกสามารถเขียนเป็นสำนวนที่มีประโยชน์สำหรับผลิตภัณฑ์ตัวดำเนินการคาร์ทีเซียน:n x=(*)<$>x<*>1:x
xnor

0

Python 3 2 , 167 139 136 133 123 121 120 118 ไบต์

a=[2,3];exec'p=[x*y for x in a for y in a if x-y];a+=min(q for q in p if p.count(q)+(q in a)<3),;'*input();print a[-2]

ลองออนไลน์!


ขอบคุณ @ Mr.Xcoder และ @LeakyNun สำหรับการปรับปรุง!


159 ไบต์เพียงแค่ลบช่องว่างและวงเล็บเหลี่ยมที่ไม่จำเป็นออก
Mr. Xcoder

@ Mr.Xcoder ขอบคุณสำหรับการปรับปรุง ผมไม่แน่ใจว่าการเปลี่ยนแปลงp.count(q)==1ที่จะp.count(q)>0มีผลบังคับใช้เนื่องจากว่าเป็นรหัสที่ช่วยให้สภาพ "ในตรงทางหนึ่ง" ของความท้าทาย
Chase Vogeli

p.count(q)-~(q in a)<=3เทียบเท่ากับp.count(q)+(q in a)<3
Leaky Nun

@LeakyNun ขอบคุณ!
Chase Vogeli
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.