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.

A161447 Numbers n such that A160700(n) = 7.

Original entry on oeis.org

7, 22, 37, 52, 67, 82, 97, 112, 143, 158, 173, 188, 203, 218, 233, 248, 262, 279, 292, 309, 322, 339, 352, 369, 398, 415, 428, 445, 458, 475, 488, 505, 517, 532, 551, 566, 577, 592, 611, 626, 653, 668, 687, 702, 713, 728, 747, 762, 772, 789, 806, 823, 832
Offset: 1

Views

Author

Reinhard Zumkeller, Jun 10 2009

Keywords

Crossrefs

Programs

  • PARI
    A160700(n)=my(t=n%16); while(n>15, n>>=4; t=bitxor(t, n%16)); t
    a(n)=for(k=16*n-16, 16*n-1, if(a(k)==7, return(k))) \\ Charles R Greathouse IV, Jan 25 2018

Formula

16n - 16 <= a(n) <= 16n - 1. - Charles R Greathouse IV, Jan 25 2018