Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

(tye)Re: Sierpinskij (Re: Binomial Expansion)

by tye (Sage)
on Mar 29, 2001 at 21:13 UTC ( [id://68131]=note: print w/replies, xml ) Need Help??


in reply to Sierpinskij (Re: Binomial Expansion)
in thread Binomial Expansion

I thought part of the point of Pascal's triangle was to show that you don't have to compute factorials:

my @line= (1); while( 1 ) { print "@line\n"; push @line, 0; for( reverse 1..$#line ) { $line[$_] += $line[$_-1]; } }
Be sure to pipe the output to more.

        - tye (but my friends call me "Tye")

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (2)
As of 2024-04-26 01:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found