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.

A103584 Numbers in A103543 not congruent to 3 mod 4.

Original entry on oeis.org

62, 126, 190, 254, 318, 382, 446, 510, 574, 638, 702, 766, 830, 894, 958, 1021, 1022, 1086, 1150, 1214, 1278, 1342, 1406, 1470, 1534, 1598, 1662, 1726, 1790, 1854, 1918, 1982, 2045, 2046, 2110, 2174, 2238, 2302, 2366, 2430, 2494, 2558, 2622, 2686, 2750
Offset: 1

Views

Author

Keywords

Programs

  • Mathematica
    f[n_] := Block[{k = 1, s = 0, l = Max[2, Floor[Log[2, n + 1] + 2]]}, While[k < l, If[ Mod[n + k, 2^k] == 0, s = s + 2^k]; k++ ]; s]; Select[ Complement[ Range[2750], Select[ Range[11000], f[ # ] == 0 &]/4], Mod[ #, 4] != 3 &] (* Robert G. Wilson v, Mar 26 2005 *)

Extensions

More terms from Robert G. Wilson v, Mar 26 2005