Cullen and Woodall numbers: Difference between revisions

Cullen and Woodall numbers in Asymptote
(Cullen and Woodall numbers in Tiny BASIC)
(Cullen and Woodall numbers in Asymptote)
Line 147:
<pre>First 20 cullen numbers: 3 9 25 65 161 385 897 2049 4609 10241 22529 49153 106497 229377 491521 1048577 2228225 4718593 9961473 20971521
First 20 woodall numbers: 1 7 23 63 159 383 895 2047 4607 10239 22527 49151 106495 229375 491519 1048575 2228223 4718591 9961471 20971519</pre>
 
=={{header|Asymptote}}==
<syntaxhighlight lang="Asymptote">int num = 0;
 
write("First 20 Cullen numbers:");
 
for(int n = 1; n < 20; ++n) {
num = n * (2^n) + 1;
write(" ", num, suffix=none);
}
 
write("");
write("First 20 Woodall numbers:");
 
for(int n = 1; n < 20; ++n) {
num = n * (2^n) - 1;
write(" ", num, suffix=none);
}</syntaxhighlight>
 
=={{header|AWK}}==
2,130

edits