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.

A319477 Nonnegative integers which cannot be obtained by adding exactly two nonzero decimal palindromes.

Original entry on oeis.org

0, 1, 21, 32, 43, 54, 65, 76, 87, 98, 111, 131, 141, 151, 161, 171, 181, 191, 201, 1031, 1041, 1042, 1051, 1052, 1053, 1061, 1062, 1063, 1064, 1071, 1072, 1073, 1074, 1075, 1081, 1082, 1083, 1084, 1085, 1086, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1099
Offset: 1

Views

Author

Alois P. Heinz, Sep 19 2018

Keywords

Comments

Every integer larger than two can be obtained by adding exactly three nonzero decimal palindromes.
The nonzero palindromes of this sequence are in A213879.

Crossrefs

Cf. A002113, A035137 (allowing zero), A213879, A261131, A319453, A319468, A319586.

Programs

  • Maple
    p:= proc(n) option remember; local i, s; s:= ""||n;
          for i to iquo(length(s), 2) do if
            s[i]<>s[-i] then return false fi od; true
        end:
    h:= proc(n) option remember; `if`(n<1, 0,
         `if`(p(n), n, h(n-1)))
        end:
    b:= proc(n, i, t) option remember; `if`(n=0, 1, `if`(t*i (k-> b(n, h(n), k)-b(n, h(n), k-1))(2):
    a:= proc(n) option remember; local j; for j from 1+
          `if`(n=1, -1, a(n-1)) while g(j)<>0 do od; j
        end:
    seq(a(n), n=1..80);

Formula

A319468(a(n)) = 0.