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.

A363764 a(1)=1, and thereafter, a(n) is the number of terms in the sequence thus far that appear with a frequency not equal to that of a(n-1).

Original entry on oeis.org

1, 0, 0, 1, 0, 2, 5, 5, 4, 7, 7, 5, 6, 10, 10, 9, 12, 12, 10, 10, 16, 16, 14, 18, 18, 15, 20, 20, 16, 20, 18, 16, 24, 26, 26, 27, 28, 28, 28, 24, 30, 33, 33, 31, 35, 35, 32, 37, 37, 33, 32, 35, 31, 37, 30, 39, 48, 48, 40, 50, 50, 41, 52, 52, 42, 54, 54, 43, 56, 56, 44, 58, 58
Offset: 1

Views

Author

Neal Gersh Tolunsky, Jun 28 2023

Keywords

Comments

The first time a number appears for the 8th time is a(1491228545) = 953950324. - Pontus von Brömssen, Jul 06 2023

Examples

			a(8)=5 occurs two times, so a(9) is the number of terms which do not occur two times, which is 4 (there are three 0s and one 2).
		

Crossrefs

Programs

  • MATLAB
    function a = A363764( max_n )
        s = zeros(1,max_n); a = 1; s(2) = 1;
        for n = 2:max_n
            a(n) = length(find(s(a+1)~=s(a(n-1)+1)));
            s(a(n)+1) = s(a(n)+1)+1;
        end
    end % Thomas Scheuerle, Jun 30 2023
  • Mathematica
    a[1] = 1; a[n_] := a[n] = Total[Select[Tally[v = Array[a, n - 1]][[;; , 2]], # != Count[v, a[n - 1]] &]]; Array[a, 100] (* Amiram Eldar, Jun 30 2023 *)
  • Python
    from itertools import count,islice
    from collections import defaultdict
    def A363764_gen():
        x = 1
        freq = defaultdict(int)
        freq[x] = f0 = 1
        freqfreq = defaultdict(int)
        freqfreq[1] = 1
        for n in count(1):
            yield x
            x = n-f0*freqfreq[f0]
            freq[x] = f0 = freq[x]+1
            if f0 != 1: freqfreq[f0-1] -= 1
            freqfreq[f0] += 1
    def A363764_list(nmax):
        return list(islice(A363764_gen(), nmax)) # Pontus von Brömssen, Jul 01 2023 (after an idea by Kevin Ryde)