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

A115337 a(n) is the smallest number representable in exactly n ways as a sum of 3 palindromes (each of them >= 0).

Original entry on oeis.org

0, 2, 3, 4, 5, 28, 6, 7, 24, 8, 22, 9, 10, 88, 11, 12, 13, 15, 189, 211, 121, 110, 243, 244, 143, 268, 176, 165, 187, 303, 337, 335, 325, 343, 334, 323, 345, 373, 391, 383, 404, 393, 458, 423, 426, 435, 413, 446, 454, 492, 517, 505, 464, 538, 527, 474, 549, 547
Offset: 1

Views

Author

Giovanni Resta, Jan 20 2006

Keywords

Examples

			a(6)=28 since 28 = 22+0+6 = 22+1+5 = 22+2+4 = 22+3+3 = 11+9+8 =
11+11+6 and no number less than 28 has 6 such decompositions.
		

Crossrefs

Cf. A115336.

Programs

  • Mathematica
    palQ[n_] := n == FromDigits@Reverse@IntegerDigits@n; pt = Select[Range[0, 10001], palQ]; t = Table[0, {i, 10000}]; Do[v=pt[[i]]+pt[[j]]+pt[[k]]; If[v<10000, t[[v+1]]++ ], {i, 200}, {j, i}, {k, j}]; Table[Position[t, k][[1, 1]]-1, {k, 60}]

A364836 a(n) is the least positive integer that can be expressed as the sum of two distinct nonzero decimal palindromes in exactly n ways.

Original entry on oeis.org

1, 3, 5, 7, 9, 110, 353, 363, 373, 383, 393, 524, 474, 484, 565, 494, 575, 615, 585, 837, 595, 716, 686, 1342, 777, 696, 1332, 787, 878, 918, 797, 888, 979, 32212, 12892, 898, 989, 1009, 11220, 54544, 999, 30902, 11110, 43423, 42623, 28982, 1100, 11000, 35753, 36663
Offset: 0

Views

Author

Ilya Gutkovskiy, Aug 28 2023

Keywords

Examples

			For n = 5: 110 = 9 + 101 = 11 + 99 = 22 + 88 = 33 + 77 = 44 + 66.
		

Crossrefs

Extensions

a(33) and beyond from Michael S. Branicky, Aug 31 2023
Showing 1-2 of 2 results.