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.

A322492 Records in the number of ways to represent a number as truncated triangular number A008912.

Original entry on oeis.org

1, 2, 4, 6, 8, 12, 16, 18, 24, 32, 36, 48, 64, 72, 96, 108, 128, 144, 192
Offset: 1

Views

Author

Hugo Pfoertner, Dec 12 2018

Keywords

Comments

The numbers where the record is first achieved are provided as A322491.

Crossrefs

Programs

  • PARI
    v=vectorsmall(20000000);for(n=1,5100,for(k=1,n-1,my(t=n*(n-3)/2-k^2+k*n+1);v[t]++));vm=0;for(k=1,#v,if(v[k]>vm,print1(v[k],", ");vm=v[k])) \\ Hugo Pfoertner, Sep 18 2020