GolfScript, 29 28 अक्षर
{.{\.,{)1$\%},,-=}+2@?,?}:f;
संपादित करें: यदि हम इस विचार के लिए पीटर टेलर को धन्यवाद देते हैं, तो एक खोज को बचाया जा सकता है।
पुराना वर्जन:
{.{\)..,{)1$\%},,-@=!}+do}:f;
GolfScript में एक प्रयास, ऑनलाइन भागो ।
उदाहरण:
13 f p # => 4096
14 f p # => 192
15 f p # => 144
कोड में अनिवार्य रूप से तीन ब्लॉक होते हैं जिन्हें निम्नलिखित पंक्तियों में विस्तार से बताया गया है।
# Calculate numbers of divisors
# .,{)1$\%},,-
# Input stack: n
# After application: D(n)
., # push array [0 .. n-1] to stack
{ # filter array by function
) # take array element and increase by one
1$\% # test division of n ($1) by this value
}, # -> List of numbers x where n is NOT divisible by x+1
, # count these numbers. Stack now is n xd(n)
- # subtracting from n yields the result
# Test if number of divisors D(n) is equal to d
# {\D=}+ , for D see above
# Input stack: n d
# After application: D(n)==d
{
\ # swap stack -> d n
D # calculate D(n) -> d D(n)
= # compare
}+ # consumes d from stack and prepends it to code block
# Search for the first number which D(n) is equal to d
# .T2@?,? , for T see above
# Input stack: d
# After application: f(d)
. # duplicate -> d d
T # push code block (!) for T(n,d) -> d T(n,d)
2@? # swap and calculate 2^d -> T(n,d) 2^d
, # make array -> T(n,d) [0 .. 2^d-1]
? # search first element in array where T(n,d) is true -> f(d)