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.

A319432 The first differences (A129761) of the tribonacci representation numbers (A003714 or A014417) consists of runs of 1's separated by the terms of the present sequence.

Original entry on oeis.org

2, 3, 6, 2, 11, 2, 3, 22, 2, 3, 6, 2, 43, 2, 3, 6, 2, 11, 2, 3, 86, 2, 3, 6, 2, 11, 2, 3, 22, 2, 3, 6, 2, 171, 2, 3, 6, 2, 11, 2, 3, 22, 2, 3, 6, 2, 43, 2, 3, 6, 2, 11, 2, 3, 342, 2, 3, 6, 2, 11, 2, 3, 22, 2, 3, 6, 2, 43, 2, 3, 6, 2, 11, 2, 3, 86, 2, 3, 6, 2, 11, 2, 3, 22, 2, 3, 6, 2, 683, 2
Offset: 1

Views

Author

N. J. A. Sloane, Sep 30 2018

Keywords

Comments

The runs of 1's in A129761 have lengths that apparently are given by the Fibonacci word A005614 (with a slight change at the start). The present sequence shows the terms greater than 1. The structure of this sequence is (partially) analyzed in the comments in A129761.

Crossrefs

Programs

  • PARI
    p=0; for (n=1, 2052, if (bitand(n,2*n)==0, if (n-p>1, print1 (n-p ", ")); p=n)) \\ Rémy Sigrist, Oct 07 2018