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.

A191282 Increasing sequence generated by these rules: a(1)=1, and if x is in a then 2x and x^2+x+1 are in a.

Original entry on oeis.org

1, 2, 3, 4, 6, 7, 8, 12, 13, 14, 16, 21, 24, 26, 28, 32, 42, 43, 48, 52, 56, 57, 64, 73, 84, 86, 96, 104, 112, 114, 128, 146, 157, 168, 172, 183, 192, 208, 211, 224, 228, 256, 273, 292, 314, 336, 344, 366, 384, 416, 422, 448, 456, 463, 512, 546, 584, 601, 628, 672, 688, 703, 732, 768, 813, 832, 844, 896, 912, 926, 1024, 1057, 1092
Offset: 1

Views

Author

Clark Kimberling, May 29 2011

Keywords

Comments

See A191203.

Examples

			1 -> 2,3 -> 4,6,7,13 ->
		

Crossrefs

Cf. A191203.

Programs

  • Mathematica
    g = 11; Union[Flatten[NestList[{2 #, #^2 + # + 1} &, 1, g]]]
    (* A191282; use g>10 to get all of first 60 terms *)