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-3 of 3 results.

A034307 Numbers n such that there are no oblong (promic) palindromes of length n.

Original entry on oeis.org

2, 5, 9, 12, 18, 20, 30, 34
Offset: 1

Views

Author

Patrick De Geest, Oct 15 1998

Keywords

Crossrefs

A028336 Positive numbers k such that k*(k+1) is a palindrome.

Original entry on oeis.org

1, 2, 16, 77, 538, 1621, 2457, 5291, 5313, 52008, 142401, 143498, 1610151, 1713543, 4670028, 5218983, 15137566, 15282411, 15814148, 47370058, 50702751, 142594226, 166691108, 1694576061, 2554554552, 25541432472, 47878213558, 77714915542, 155482156418
Offset: 1

Views

Author

Keywords

Comments

For additional terms, see the De Geest link.

Crossrefs

Programs

  • Mathematica
    Select[Range[500000], PalindromeQ[#(#+1)] &] (* or *) Select[Range[50000], IntegerDigits[#(#+1)] == Reverse[ IntegerDigits[#(#+1)]] &] (* G. C. Greubel, Nov 24 2016 *)
  • PARI
    isok(k) = my(d = digits(k*(k+1))); Vecrev(d) == d; \\ Michel Marcus, Nov 09 2017

Extensions

More terms from Jon E. Schoenfield, Nov 09 2017

A028414 Palindromes of form k^2 + k + 1.

Original entry on oeis.org

1, 3, 7, 111, 343, 757, 10101, 15751, 30103, 1001001, 1255521, 1403041, 1837381, 3372733, 3521253, 3847483, 100010001, 141979141, 10000100001, 14181118141, 16112621161, 35297579253, 35475157453, 37011411073, 38735553783, 1000001000001, 1020505050201
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    palQ[n_] := Block[{d = IntegerDigits[n]}, d == Reverse[d]]; f[n_] := n^2 + n + 1; Select[f@ Range[0, 10^5], palQ] (* Giovanni Resta, Aug 29 2018 *)

Extensions

More terms from Giovanni Resta, Aug 28 2018
Showing 1-3 of 3 results.