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.

Showing 1-1 of 1 results.

A070926 Records in the Conway's alimentary function A070871.

Original entry on oeis.org

1, 2, 3, 6, 12, 15, 20, 28, 40, 45, 77, 88, 104, 126, 165, 198, 209, 273, 322, 390, 522, 570, 609, 714, 851, 1066, 1160, 1363, 1470, 1870, 1887, 2220, 2296, 2747, 2760, 3572, 3871, 3950, 4180, 4895, 5820, 7236, 7521, 7980, 9348, 10112, 10191, 12816
Offset: 1

Views

Author

Robert G. Wilson v, May 20 2002

Keywords

Crossrefs

Programs

  • Mathematica
    a[0] = 1; a[n_] := a[n] = If[OddQ[n], a[n/2 - 1/2], a[n/2] + a[n/2 - 1]]; m = 0; Do[ If[ a[n]*a[n - 1] > m, m = a[n]*a[n - 1]; Print[m]], {n, 1, 10^4}]
Showing 1-1 of 1 results.