Skip to content

Instantly share code, notes, and snippets.

View neoneye's full-sized avatar

Simon Strandgaard neoneye

View GitHub Profile
@neoneye
neoneye / main.py
Created March 14, 2024 15:41
Find available domain names by combining words
from tqdm import tqdm
import whois
import csv
# Base parts of the names to combine
base_parts = [
'paper', 'rock', 'scissors',
]
# Suffixes to append
@neoneye
neoneye / gist:a54947142434492a2e73d2a678be869d
Created June 28, 2022 13:00
PARI/GP create OEIS bfile in browser
bfile(name, v, offset=1, limit=1000)={
my(cur=offset-1,F);
for(i=1,#v,
if (#Str(v[i]) > limit,
print("Next term has "#Str(v[i])" digits; exiting.");
break
);
my(s=Str(cur++, " ", v[i]));
print(s);
);
@neoneye
neoneye / a338277_integer.rb
Last active February 4, 2021 15:01
Integer sequence A338277 generates a sunflower
items = []
values = Array.new(1000) do |i|
n = i + 2
x = (n ** 2) / 2
y = Integer.sqrt(x)
value = x % y
items << [n, x, y, value]
value
end
IO.write('a338277_values.csv', values.join("\n"))
@neoneye
neoneye / text_plotter_example.rb
Created January 28, 2021 12:07
A340867 text scatter plot
def plot_modulus(values, count)
puts
s = values.map {|v| v.to_s(count) }.join('')
count.times do |i|
value = i.to_s(count)
re = Regexp.new("[^" + value + "]")
puts '# ' + s.gsub(re, ' ')
end
end
require 'prime'
def plot(values, modvalue)
puts
puts "plot(values, #{modvalue})"
s = values.map {|v| (v % modvalue).to_s(modvalue) }.join('')
modvalue.times do |i|
value = i.to_s(modvalue)
re = Regexp.new("[^" + value + "]")
puts '# ' + s.gsub(re, ' ')
@neoneye
neoneye / constant_to_primes.rb
Last active November 27, 2020 19:35
Reconstructing the primes from the Prime-Representing Constant 2.920050977316
# 2.920050977316 - A Prime-Representing Constant
# by Dylan Fridman, Juli Garbulsky, Bruno Glecer, James Grime, Massi Tron Florentin
#
# Numberphile
# https://www.youtube.com/watch?v=_gCKX6VMvmU
#
# Article
# https://arxiv.org/abs/2010.15882
#
# OEIS sequence
@neoneye
neoneye / main.rs
Last active November 18, 2020 21:57
Print out filename:linenumber when logging
use std::io::Write;
std::env::set_var("RUST_LOG", "debug");
env_logger::builder()
.format(|buf, record| {
writeln!(buf, "{} - {}:{} - {}", record.level(), record.file().unwrap_or("N/A"), record.line().unwrap_or(0), record.args())
})
.init();
@neoneye
neoneye / a136437_a338530_compare.rb
Last active November 1, 2020 22:21
Comparision of a136437 and a338530
# Regarding
# https://oeis.org/draft/A338530
# https://oeis.org/A136437
#
# Hugo Pfoertner: Can you please check the relation to A136437? It seems that (a(n)+2)/2 = (A136437-1)/2 for the even terms after a(31).
# Hugo Pfoertner: I checked against A136437 and found a(n)=A136437(n)-3 for 31<=n<=128.
#
# Here is output of the two sequences A136437 and A338530. They are indeed the same for this range.
#
require 'prime'
require 'prime'
PRIMES = Prime.first(1000)
# Kevin Ryde pointed out that A337724 corresponds to this formula, with crazy rounding
# prime(n) - prime(n-2)/2 + prime(n-4)/2^2 - prime(n-6)/2^3 + ...
# What about A337723, does it have a similar formula, with crazy rounding?
# Yes, I think I have found a formula that can do it.
accumulator_a = 0.5
accumulator_b = 1
require 'prime'
PRIMES = Prime.first(1000)
# Kevin Ryde pointed out that A337724 corresponds to this formula, with crazy rounding
# prime(n) - prime(n-2)/2 + prime(n-4)/2^2 - prime(n-6)/2^3 + ...
values = [0, 1]
30.times do |i|
sum = 0
power = 0
sign = 1