Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: Re: Binomial Expansion

by japhy (Canon)
on Mar 29, 2001 at 21:39 UTC ( [id://68141]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    nCr (n,r) {
      res = 1;
    ...
      }
      return res;
    }
    
  2. or download this
    X = 2, series = (y, y+1);  one is div. by 2
    X = 3, series = (y, y+1, y+2);  one is div. by 3
    ...
    (17/1) (16/4) (15/(3*5)) (14/2)     (13/1)
    (17/1) (16/4) (15/(3*5)) (14/2)     (13/1) (12/6)
    (17/1) (16/4) (15/(3*5)) (14/(2*7)) (13/1) (12/6) (11/1)
    
  3. or download this
      r
    -----
    ...
     | |   ---------
     | |       i
     i=1
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://68141]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (3)
As of 2024-04-25 16:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found