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.

A268381 Numbers having at least the same number of prime factors of the form 4*k+1 than of the form 4*k+3, when counted with multiplicity.

Original entry on oeis.org

1, 2, 4, 5, 8, 10, 13, 15, 16, 17, 20, 25, 26, 29, 30, 32, 34, 35, 37, 39, 40, 41, 50, 51, 52, 53, 55, 58, 60, 61, 64, 65, 68, 70, 73, 74, 75, 78, 80, 82, 85, 87, 89, 91, 95, 97, 100, 101, 102, 104, 106, 109, 110, 111, 113, 115, 116, 119, 120, 122, 123, 125, 128, 130, 136, 137, 140, 143, 145, 146, 148, 149, 150
Offset: 1

Views

Author

Antti Karttunen, Feb 05 2016

Keywords

Comments

Numbers n for which A083025(n) >= A065339(n) or equally, for which A079635(n) >= 0.
Closed under multiplication.

Crossrefs

Complement: A268380.
Disjoint union of A072202 and A268379.

Programs

  • Mathematica
    Position[Array[Map[Length, {Select[#, Mod[#, 4] == 1 &], Select[#, Mod[#, 4] == 3 &]}] &@ Flatten@ Apply[Table[#1, {#2}] &, FactorInteger@ #, 1] &, {150}], {a_, b_} /; a >= b] // Flatten (* Michael De Vlieger, Feb 05 2016 *)