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.

A246335 Second bisection of A246333.

Original entry on oeis.org

1, 5, 9, 21, 25, 37, 57, 85, 89, 101, 121, 165, 169, 213, 217, 317, 321, 333, 353, 397, 401, 461, 481, 637, 593, 733, 689, 877, 801, 981, 921, 1157, 1185, 1197, 1217, 1261, 1265, 1325, 1345, 1501, 1457, 1613, 1585, 1829, 1721, 2037, 1913, 2381, 2145, 2477, 2409, 2685
Offset: 0

Views

Author

N. J. A. Sloane, Aug 30 2014

Keywords

Comments

a(2^k-1) begins 1,5,21,85, which is (4^k-1)/3, but a(15) = 317 not 341, breaking the pattern.

Crossrefs

Cf. A246333, A246334, A247001. Similar to but different from A169707.

Programs

  • Mathematica
    max = 100; (Partition[Total[Flatten[#]]& /@ CellularAutomaton[{493, {2, {{0, 2, 0}, {2, 1, 2}, {0, 2, 0}}}, {1, 1}}, {{{1}}, 0}, max], 2] /. {a_, b_} -> {a, (max + 1 - Mod[max, 2])^2 - b} )[[All, 2]] (* Jean-François Alcover, Oct 03 2018 *)