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.

A342428 Starts of runs of 3 consecutive Niven numbers in base 3/2 (A342426).

Original entry on oeis.org

2196, 7656, 15624, 16335, 64375, 109224, 171624, 202824, 328887, 329427, 392733, 393640, 447578, 482238, 494450, 520695, 631824, 723519, 773790, 785695, 820960, 876987, 981783, 986607, 1021824, 1026750, 1030455, 1084048, 1108094, 1160670, 1235070, 1242824, 1412908
Offset: 1

Views

Author

Amiram Eldar, Mar 11 2021

Keywords

Examples

			2196 is a term since 2196, 2197 and 2198 are all Niven numbers in base 3/2.
		

Crossrefs

Subsequence of A342426 and A342427.
Subsequences: A342429.
Similar sequences: A154701 (decimal), A328206 (factorial), A328210 (Zeckendorf), A328214 (lazy Fibonacci), A330932 (binary), A331087 (negaFibonacci), A333428 (primorial), A334310 (base phi), A331822 (negabinary).

Programs

  • Mathematica
    s[0] = 0; s[n_] := s[n] = s[2*Floor[n/3]] + Mod[n, 3]; q[n_] := Divisible[n, s[n]]; Select[Range[10^6], AllTrue[# + {0, 1, 2}, q] &]