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.

A361342 Numbers k such that A361338(k) = 3.

Original entry on oeis.org

139, 148, 149, 167, 179, 187, 188, 189, 196, 197, 216, 217, 218, 226, 236, 238, 246, 247, 249, 256, 258, 261, 262, 263, 266, 269, 271, 276, 279, 283, 287, 288, 292, 294, 324, 329, 334, 337, 338, 339, 341, 342, 347, 349, 354, 362, 364, 368, 369, 372, 374, 376, 381, 382, 383, 386, 391, 392, 396, 399, 413, 416, 417, 423, 427, 428, 431, 436, 442, 443, 446
Offset: 1

Views

Author

N. J. A. Sloane, Apr 05 2023

Keywords

Comments

{0, 6, 8} is by far the most frequent possible outcome for the numbers in this sequence (almost 60% of all cases up to 10^4, next most frequent being {0, 2, 6} and {0, 4, 6} and {0, 4, 8} in about 8% of the cases each). Up to 10^4, no term in this sequence can ever produce a 3. - M. F. Hasler, Apr 08 2023

Crossrefs

Programs

  • Mathematica
    -1 + Position[#, 3][[All, 1]] &@ Flatten@ Array[Map[Total, Transpose@ ImageData[ColorNegate@ Import["https://oeis.org/A361338/a361338_2.png", "PNG"], "Bit"][[10 # + 1 ;; 10 # + 10, 1 ;; 1000]]] &, 1, 0] (* Michael De Vlieger, Apr 06 2023, using image at A361338 *)
  • PARI
    select( {is_A361342(n)=A361338(n)==3}, [1..456]) \\ M. F. Hasler, Apr 08 2023