-
Notifications
You must be signed in to change notification settings - Fork 33
/
factors_of_two_triangle.pl
executable file
·63 lines (47 loc) · 1.11 KB
/
factors_of_two_triangle.pl
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/perl
# Author: Daniel "Trizen" Șuteu
# License: GPLv3
# Date: 09 August 2016
# https://github.com/trizen
#
## Generates a number triangle, highlighting the number of
## factors of two with a different color for each number n.
#
use 5.010;
use strict;
use warnings;
use GD::Simple;
use ntheory qw(factor);
use List::Util qw(max shuffle);
my @colors = shuffle(grep { !/black|gradient/ } GD::Simple->color_names);
my %data;
sub generate {
my ($n) = @_;
foreach my $i (0 .. $n) {
$data{$i} = grep { $_ == 2 } factor($i);
}
return 1;
}
generate(1000000); # takes about 10 seconds
my $i = 1;
my $j = 1;
my $max = max(keys %data);
my $limit = int(sqrt($max)) - 1;
my $img = GD::Simple->new($limit * 2, $limit + 1);
for my $m (reverse(0 .. $limit)) {
$img->moveTo($m, $i - 1);
for my $n ($j .. $i**2) {
if ($data{$j} > 0) {
$img->fgcolor($colors[$data{$j}]);
}
else {
$img->fgcolor('black');
}
$img->line(1);
++$j;
}
++$i;
}
open my $fh, '>:raw', 'factors_of_two.png';
print $fh $img->png;
close $fh;