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.

A307348 Numbers k such that there are no palindromic triangular numbers of length k.

Original entry on oeis.org

12, 30, 40
Offset: 1

Views

Author

Robert Price, May 01 2019

Keywords

Crossrefs

Programs

  • Mathematica
    A003098 = Select[PolygonalNumber[3, Range[0, 10^6]], PalindromeQ];
    (* Set Range to level of desired running time. *)
    nopal[n_] := Length[Select[A003098, IntegerLength[#] == n || (n == 1 && # == 0) &]]; Select[Range[12], nopal[#] == 0 &]
    (* Set Range to encompass length of last value in A003098. *)