Gist

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
<meta name="viewport" content="width=device-width, user-scalable=no">
<title>Lot's of languages</title>
</head>
<body>
The book "EOR #$FF - 6502 Ponderables and Befuddlements" by David Youd,
rearranged by Qalle (so each explanation is right after the puzzle).
Downloaded from https://archive.org/details/eor6502
-------------------------------------------------------------------------------
EOR #$FF
6502 Ponderables and Befuddlements
David Youd
Lulu Press, Inc.
A Python program that proves a = 72 is the smallest solution to
a^5 = b^5 + c^5 + d^5 + e^5 + f^5 where a...f are positive integers.
Prints 72 (19, 43, 46, 47, 67).
import itertools
for base in range(1, 72 + 1):
for comb in itertools.combinations_with_replacement(range(1, base), 5):
if sum(b ** 5 for b in comb) == base ** 5:
print(base, comb)
List of files in the MBnet BBS in January 1997.
Source: MBFILES.LST on MikroBitti Sähköinen lehti CD-ROM 1996.
Päätaso: 1) Tiedostoja
======================
MBCD.LST 266888 30.05.96 MBCD:n tiedostojen lista kommentteineen.
Tarkoitettu MBRead-ohjelman ja MBCD:n kanssa
käytettäväksi. MBRead ja muut MBnetin
tiedostolistojen selailuun tarvittavat

Read the original on gist.github.com ↗