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.

A005576 The limiting sequence [A259095(r(r+1)/2-s,r), s=0,1,2,...,r-1] for very large r.

Original entry on oeis.org

1, 1, 2, 3, 4, 7, 9, 13, 17, 25, 32, 43, 56, 73, 95, 122, 155, 196, 248, 309, 388, 480, 595, 731, 899, 1096, 1338, 1624, 1967, 2373, 2860, 3431, 4111, 4911, 5853, 6963, 8263, 9785, 11565, 13646, 16064, 18884, 22155, 25953, 30349, 35441, 41311, 48098, 55906, 64900, 75231, 87103, 100702, 116296, 134130, 154522
Offset: 0

Views

Author

Keywords

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Programs

  • Maple
    b:= proc(n, i, d) option remember; `if`(i*(i+1)/2n, 0, d*b(n-i, i-1, 1))))
        end:
    a:= n-> b(n*(n-1)/2, n, 1):
    seq(a(n), n=0..55);  # Alois P. Heinz, Jul 08 2016
  • Mathematica
    b[n_, i_, d_] := b[n, i, d] = If[i*(i + 1)/2 < n, 0, If[n == 0, 1, b[n, i - 1, d + 1] + If[i > n, 0, d*b[n - i, i - 1, 1]]]];
    a[n_] := b[n*(n - 1)/2, n, 1];
    Table[a[n], {n, 0, 55}] (* Jean-François Alcover, Jul 28 2016, after Alois P. Heinz *)

Extensions

Edited by N. J. A. Sloane, Jun 20 2015
Terms a(0)..a(11) computed by R. K. Guy
Terms a(12)=56 and beyond from Joerg Arndt, Apr 10 2016