cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A350277 Indices of records in A349325.

Original entry on oeis.org

1, 3, 6, 7, 14, 19, 54, 73, 129, 313, 353, 470, 5838, 10855, 14473, 26283, 60220, 60221, 155897, 445089, 1098406, 1168014, 1169865, 4143030, 8546945, 10964814, 11395926, 31273927, 590633697, 1117772702, 1240568869, 1240568870, 2845683047, 2963752572, 2963752573
Offset: 1

Views

Author

Paolo Xausa, Dec 22 2021

Keywords

Crossrefs

Programs

  • Mathematica
    A349325[n_]:=Module[{h=1,c=n,prevc=n},While[c>1,If[OddQ[c],c=(3c+1)/2;If[prevcn,h++],c/=2^IntegerExponent[c,2];If[prevc>n&&cA349325[i])>rec,rec=r;AppendTo[a,i]],{i,upto}];a
  • Python
    def A349325(n):
        prevc = c = n
        h = 1
        while c > 1:
            if c % 2:
                c = (3*c+1) // 2
                if prevc < n and c > n: h += 1
            else:
                c //= 2
                if prevc > n and c < n: h += 1
            prevc = c
        return h
    rec, rec_idx = -1, []
    for i in range(1, 10000):
        r = A349325(i)
        if r > rec:
            rec = r
            rec_idx.append(i)
    print(rec_idx)

Extensions

a(24)-a(35) from Chai Wah Wu, Jan 04 2022
Showing 1-1 of 1 results.