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.

A344313 Number k such that k and k+1 have the same number of bi-unitary divisors (A286324).

Original entry on oeis.org

2, 3, 4, 14, 15, 20, 21, 26, 27, 33, 34, 35, 38, 44, 45, 50, 51, 57, 62, 68, 74, 75, 76, 81, 85, 86, 91, 92, 93, 94, 98, 99, 104, 115, 116, 117, 118, 122, 123, 124, 133, 135, 141, 142, 145, 146, 147, 158, 171, 177, 187, 189, 201, 202, 205, 206, 212, 213, 214
Offset: 1

Views

Author

Amiram Eldar, May 14 2021

Keywords

Examples

			2 is a term since A286324(2) = A286324(3) = 2.
14 is a term since A286324(14) = A286324(15) = 4.
		

Crossrefs

Similar sequences: A005237, A006049, A343819, A344312, A344314.

Programs

  • Mathematica
    f[p_, e_] := If[OddQ[e], e + 1, e]; bd[1] = 1; bd[n_] := Times @@ f @@@ FactorInteger[n]; Select[Range[200], bd[#] == bd[# + 1] &]