OFFSET
1,3
COMMENTS
Instead of comparing previous terms with half of the previous term, one can define a sequence that compares each term with beta times the previous term, where 0 < beta < 1. Such a sequence can potentially also produce a fractal-like structure.
LINKS
Nicolas Bělohoubek, Table of n, a(n) for n = 1..10000
Nicolas Bělohoubek, Scatterplot of (log_4.5(n), a(n)/n), 0 < n < 4.5^8
Nicolas Bělohoubek, Scatterplot of (log_4.5(n), a(n)/n), 4.5^7.089 < n < 4.5^7.113
FORMULA
1 <= a(n) <= n.
MATHEMATICA
s={1}; Do[AppendTo[s, Length[Select[s, #>s[[-1]]/2&]]], {i, 72}]; s (* James C. McMahon, May 05 2026 *)
PROG
(Python)
from itertools import islice
from collections import Counter
def agen(): # generator of terms
c, an = Counter(), 1
while True:
c[an] += 1
yield an
t = an//2
an = sum(c[ci] for ci in c if ci > t)
print(list(islice(agen(), 74))) # Michael S. Branicky, Apr 30 2026
CROSSREFS
KEYWORD
nonn,look
AUTHOR
Nicolas Bělohoubek, Apr 29 2026
STATUS
approved
