Skip to content

Instantly share code, notes, and snippets.

@olligobber
Last active February 13, 2017 13:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save olligobber/6b56b3291ef29b14546e to your computer and use it in GitHub Desktop.
Save olligobber/6b56b3291ef29b14546e to your computer and use it in GitHub Desktop.
An incorrect implementation to render for Tupper's Self Referential Formula. https://en.wikipedia.org/wiki/Tupper's_self-referential_formula
inp = int(input("k = "))
inp = inp//7
out = []
chars = ["░", "█"]
for i in range(17):
out.append("")
for i in range(106):
for j in range(17):
out[j]+=chars[inp&1]
inp = inp>>1
for i in range(17):
print(out[i])
# 960939379918958884971672962127852754715004339660129306651505519271702802395266424689642842174350718121267153782770623355993237280874144307891325963941337723487857735749823926629715517173716995165232890538221612403238855866184013235585136048828693337902491454229288667081096184496091705183454067827731551705405381627380967602565625016981482083418783163849115590225610003652351370343874461848378737238198224849863465033159410054974700593138339226497249461751545728366702369745461014655997933798537483143786841806593422227898388722980000748404719
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment