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.

A225673 Number of integers whose sum of substrings = n.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 9, 7, 7, 5, 5, 3, 3, 1, 1, 0, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 1, 1, 2, 2, 3, 2, 3, 2, 3, 2, 3, 1, 2, 2, 3, 3, 4, 3, 4, 3, 4, 3, 3, 2, 3, 3, 4, 4, 5, 4, 5, 4, 5, 3, 4, 3, 4, 4, 5, 5, 6, 5, 6, 5, 5, 4, 5, 4, 5, 5, 6, 6, 7, 6, 7, 5, 6
Offset: 1

Views

Author

Keywords

Comments

20 is the first number that is not the sum of substrings of any positive integer. There are 203 such numbers < 10000, and they disproportionately begin with 2 and 3 -- 123 of them and 70 of them, respectively.

Examples

			For a(59)=5, the five solutions are:
136 (because 13+36+1+3+6=59),
140 (because 14+40+1+4+0=59),
317 (because 31+17+3+1+7=59),
321 (because 32+21+3+2+1=59), and
502 (because 50+02+5+0+2=59).
		

Crossrefs

Programs

  • R
    table(factor(sapply(1:900,function(n) { tot=0; s=as.character(n); len=nchar(s); for(i in 1:len) for(j in i:len) tot=tot+as.numeric(substr(s,i,j)); tot-n } ),levels=1:100))