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.

A249049 a(0)=1; thereafter a(n) = number of integers 1 <= i < A247665(n) that are not yet terms of A247665.

Original entry on oeis.org

1, 1, 1, 1, 1, 2, 3, 2, 3, 4, 7, 8, 11, 10, 15, 14, 15, 20, 23, 24, 27, 32, 37, 38, 43, 46, 47, 46, 45, 50, 53, 52, 51, 56, 63, 66, 67, 70, 71, 74, 81, 86, 89, 94, 95, 104, 105, 110, 115, 118, 119, 122, 127, 128, 137, 136, 137, 136, 139, 140, 151, 162, 165, 164, 165
Offset: 0

Views

Author

N. J. A. Sloane, Oct 30 2014

Keywords

Comments

In short, the running count of missing terms in A247665.

Crossrefs

Programs

  • Maple
    # computes first M terms, assumes b1 is list of first M terms of A247665
    M:=100; A:=[]; miss:=[1]; ctmiss:=[1]; last:=1; nom:=1;
    for n from 1 to M do
    t1:=b1[n]; A:=[op(A),t1];
    if member(t1,miss) then nom:=nom-1; ctmiss:=[op(ctmiss),nom];
       miss:=remove('x->x=t1',miss);
    else
       for i from last+1 to t1-1 do
       if not member(i,A) and not member(i,miss) then miss:=[op(miss),i]; nom:=nom+1; fi;
                                 od:
       ctmiss:=[op(ctmiss),nom];
    fi;
    last:=t1;
    od:
    ctmiss;