ลำดับหมายเลขหนาแน่น


12

OEIS: A167171

จำนวนหนาแน่นเป็นจำนวนที่มีตรงตาม divisors สำคัญมากที่สุดเท่าที่ตัวหารที่ไม่ใช่นายก (รวมทั้งที่ 1 และตัวเองเป็นตัวหารบริการ) อย่างเท่าเทียมกันมันเป็นทั้งนายกหรือผลิตภัณฑ์ของสองช่วงเวลาที่แตกต่างกัน ตัวเลข 100 หนาแน่นแรกคือ:

2, 3, 5, 6, 7, 10, 11, 13, 14, 15, 17, 19, 21, 22, 23, 26, 29, 31, 33, 34, 35, 37, 38, 39, 41, 43, 46, 47, 51, 53, 55, 57, 58, 59, 61, 62, 65, 67, 69, 71, 73, 74, 77, 79, 82, 83, 85, 86, 87, 89, 91, 93, 94, 95, 97, 101, 103, 106, 107, 109, 111, 113, 115, 118, 119, 122, 123, 127, 129, 131, 133, 134, 137, 139, 141, 142, 143, 145, 146, 149, 151, 155, 157, 158, 159, 161, 163, 166, 167, 173, 177, 178, 179, 181, 183, 185, 187, 191, 193, 194

ได้รับติดลบเอาท์พุทn อาจเป็นดัชนี 0 หรือดัชนี 1 ดัชนีdense(n)n

การใช้งานอ้างอิง (Sage)

import itertools

def dense_numbers():
    n = 1
    while True:
        prime_divisors = [x for x in divisors(n) if x.is_prime()]
        non_prime_divisors = [x for x in divisors(n) if not x.is_prime()]
        if len(prime_divisors) == len(non_prime_divisors):
            yield n
        n += 1

N = 20

print itertools.islice(dense_numbers(), N, N+1).next()

ลองออนไลน์


ลำดับหมายเลขเฉพาะจำนวนมาก ... ฉันไม่รู้ว่ามีอยู่
Beta Decay

2
@ βετѧΛєҫαγนอกจากนี้ยังมีช่วงเวลาที่เรียกว่าSexy Primes (͡°͜ʖ͡°)
Adnan


ค่าสูงสุดสำหรับnคืออะไร?
R. Kap

@ R.Kap สูงที่สุดเท่าที่ภาษาที่คุณเลือกสามารถไปได้
Mego

คำตอบ:


3

เยลลี่ขนาด 9 ไบต์

ÆE²Sḍ2µ#Ṫ

อ่านจาก STDIN และใช้การจัดทำดัชนีแบบ 1 ลองออนไลน์!

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

ÆE²Sḍ2µ#Ṫ  Main link. No arguments. Implicit argument: 0

      µ#   Read an integer n from STDIN and execute the chain to the left for
           k = 0, 1, 2, ... until n of them return a truthy value.
           Return the array of matches.
ÆE           Compute the exponents of k's prime factorization.
  ²          Square each exponent.
   S         Compute the sum of all squares.
    ḍ2       Test if 2 is divisible by the result (true iff  the sum is 1 or 2).
        Ṫ  Tail; extract the last (n-th) matching value of k.

2

ที่จริงแล้ว 12 ไบต์

เครดิตทั้งหมดให้กับเดนนิสสำหรับขั้นตอนวิธีการของเขา

`w♂N;*2%Y`╓N

ลองออนไลน์!

`w♂N;*2%Y`╓N

`        `     define a function
 w             prime factorization in exponent form:
               18 = (2^1)*(3^2) becomes [[2,1],[3,2]]
  ♂N           get the last element (exponent) of each sublist
    ;*         dot-product with self; equivalent to squaring
               each item and then taking the sum
      2%Y      test divisibility by 2
          ╓    first (input) solutions to the above function
           N   get the last element.


1

Brachylogขนาด 17 ไบต์

:1yt.
1<.=$p#dl<3

ลองออนไลน์!

กริยา 0 (เพรดิเคตหลัก)

:1yt.
:1y     Find the first (input) solutions of predicate 1
   t    Last element
    .   Unify with output

ภาคที่ 1 (ภาคเสริม)

1<.=$p#dl<3
1<.            1 < output
  .=           assign a value to output
  . $p#d       output's prime factorization contains no duplicate
        l      and the length
         <3    is less than three

0

R, 93 ไบต์

dense=function(n){a=b=0;for(i in which(!n%%1:n))if(which(!i%%2:i)+1==i)a=a+1 else b=b+1;a==b}

มีแนวโน้มที่จะโยนคำเตือน มันไม่ใช่ปัญหาจริงๆ การให้คำเตือนช่วยฉัน 5 ไบต์

Ungolfed

dense=function(n){
     a=b=0                                #Initializing
     factors = which(!n%%1:n)             #Finds all factors
     for(i in factors)                    #Loops through factors
         prime = which(!i%%2:i)+1==i      #Tests if current factor is prime. If it is -- the first term in this vector will be TRUE. Otherwise, it will be false.
           if (prime) a=a+1 else b=b+1    #If first term is true, add 1 to a. Else add one to b. 
      return(a==b)                        #Test equality of a and b.
}

คุณไม่สามารถใช้+=โอเปอเรเตอร์เพื่อบันทึก 2 ไบต์ได้หรือไม่
R. Kap

เศร้า R ไม่ได้มีผู้ประกอบการ incrementation ใด ๆ ที่เป็นประโยชน์เช่นหรือ+= a++บางครั้งอาจมีวิธีที่สั้นกว่า (ใช้ประโยชน์จากโครงสร้างลูปเป็นส่วนใหญ่) แต่ฉันไม่รู้ที่นี่
user5957401

0

Python ขนาด 79 ไบต์

f=lambda n,k=2:n<1or-~f(n-(sum((k%i<1)+2*(k%i**2<1)for i in range(2,k))<3),k+1)

ใช้การจัดทำดัชนีแบบอิง 1 ทดสอบบนIdeone



0

ความจริง 102 ไบต์

f(n:PI):PI==(i:=1;repeat(i:=i+1;a:=divisors(i);2*#[x for x in a|prime?(x)]=#a=>(n=1=>break;n:=n-1));i)

ungolf และผลลัพธ์

-- 1 base Indexed: return the n_th number i that has 2*#divisorsPrimeOf(i)=#divisors(i)
ff(n:PI):PI==
     i:=1
     repeat
        i:=i+1
        a:=divisors(i)
        2*#[x for x in a|prime?(x)]=#a=>(n=1=>break;n:=n-1)
     i

(3) -> [f(i)  for i in 1..23]
   (3)  [2,3,5,6,7,10,11,13,14,15,17,19,21,22,23,26,29,31,33,34,35,37,38]
                                               Type: List PositiveInteger
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.