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

A331472 Consider the different ways to split the decimal representation of n into palindromic parts; a(n) is the greatest possible sum of the parts of such a split.

Original entry on oeis.org

0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 11, 3, 4, 5, 6, 7, 8, 9, 10, 2, 3, 22, 5, 6, 7, 8, 9, 10, 11, 3, 4, 5, 33, 7, 8, 9, 10, 11, 12, 4, 5, 6, 7, 44, 9, 10, 11, 12, 13, 5, 6, 7, 8, 9, 55, 11, 12, 13, 14, 6, 7, 8, 9, 10, 11, 66, 13, 14, 15, 7, 8, 9, 10, 11, 12, 13
Offset: 0

Views

Author

Rémy Sigrist, Jan 17 2020

Keywords

Comments

Leading zeros are forbidden in the decimal representation of n; however we allow leading zeros in the palindromic parts.

Examples

			For n = 1664:
- we can split this number into "1" and "6" and "6" and "4",
- or into "1" and "66" and "4",
- hence a(1664) = max(17, 71) = 71.
		

Crossrefs

Cf. A002113, A331471 (binary analog).

Programs

  • Mathematica
    palQ[w_] := w == Reverse@w; ric[tg_, cr_] := Block[{m = Length@tg, t}, If[m == 0, Sow@ Total[ FromDigits /@ cr], Do[ If[ palQ[t = Take[tg, k]], ric[Drop[tg, k], Join[ cr, {t}]]], {k, m}]]]; a[n_] := Max[ Reap[ ric[ IntegerDigits[n], {}]][[2, 1]]]; a /@ Range[0, 99] (* Giovanni Resta, Jan 19 2020 *)
  • PARI
    \\ See Links section.

Formula

a(n) <= n with equality iff n belongs to A002113.
Showing 1-1 of 1 results.