login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A276643 Number of distinct 4-digit vehicle plates whose sum is n. 0
1, 4, 10, 20, 35, 56, 84, 120, 165, 220, 282, 348, 415, 480, 540, 592, 633, 660, 670, 660, 633, 592, 540, 480, 415, 348, 282, 220, 165, 120, 84, 56, 35, 20, 10, 4, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
a(n) is the number of weak compositions (ordered partitions) into four parts 0, 1, 2, ..., 9. - Joerg Arndt, May 02 2017
The 4th row of A213651. - Omar E. Pol, May 02 2017
a(n) is the number of integers in the range 0 to 9999 whose sum of digits = n. There are 10000 numbers in the range 0 to 9999 and in this sequence they are distributed according to the sum of their digits (n). - Miquel Cerda, Jun 14 2017
LINKS
EXAMPLE
a(0) = 1 because 0000 is the only plate which sums to 0.
a(1) = 4 because there are 4 plates which sum to 1: 0001, 0010, 0100 and 1000.
a(2) = 10 because there are 10 numbers whose digits sum to 2: 2, 11, 20, 101, 110, 200, 1001, 1010, 1100, 2000. - Miquel Cerda, Jun 14 2017
MATHEMATICA
Length /@ Split@ Sort@ Map[Total, IntegerDigits@ Range[0, 10^4 - 1]] (* Michael De Vlieger, May 03 2017 *)
PROG
(R)
library(dplyr)
data=expand.grid(0:9, 0:9, 0:9, 0:9, KEEP.OUT.ATTRS = FALSE)
data %>%
mutate(n=Var1+Var2+Var3+Var4) %>%
group_by(n) %>%
summarise(value=n()) -> suc
View(suc)
(PARI) { my(x='x+O('x^44)); Vec(sum(k=0, 9, x^k)^4) } \\ Joerg Arndt, May 02 2017
CROSSREFS
Cf. A213651.
Sequence in context: A352208 A341193 A090579 * A000292 A352669 A101552
KEYWORD
nonn,fini,full,base
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)