html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<title>Halve Pascal Triangle - up to N 1000, calc 2 pow N, 11 pow N</title>
<!--
###############################################
challenge by Oma Falk
Pascal powers of 11
The Pascal Triangle has many interesting faces.
One of them is calculating the power of 11
1 = 11**0
11 = 11**1
121 = 11**2
1331 = 11**3
14641 = 11**4
but now the trouble begins
1 5 10 10 5 1
well... a bit harder but it does the job too.
Write a program that takes a number n up to 50 and calculate 11**n with Pascal.
################################################
Visualization of the Half of Pascal's Triangle - I tried to 1000 - successfully
Visualization is based on the principle of symmetry of the Pascal triangle relative to the central axis of the snake
The last two cells include respectively:
Enter to Rename, Shift+Enter to Preview
css
css
1
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run