login

Revision History for A136460

(Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing all changes.
Number of partitions of n into parts which are not digits of n in decimal representation.
(history; published version)
#5 by Alois P. Heinz at Sun Feb 02 17:40:23 EST 2020
STATUS

proposed

approved

#4 by Andrew Howroyd at Sun Feb 02 17:30:10 EST 2020
STATUS

editing

proposed

#3 by Andrew Howroyd at Sun Feb 02 16:56:38 EST 2020
DATA

0, 1, 2, 4, 6, 10, 14, 21, 29, 11, 13, 8, 10, 18, 23, 33, 40, 55, 64, 170, 35, 244, 119, 174, 234, 303, 384, 475, 577, 1215, 180, 399, 1844, 904, 1194, 1538, 1901, 2326, 2776, 5681, 719, 1517, 2391, 9042, 4426, 5594, 6877, 8286, 9819, 20481, 2184, 4599, 7187, 10050, 33591

LINKS

Andrew Howroyd, <a href="/A136460/b136460.txt">Table of n, a(n) for n = 1..10000</a>

EXAMPLE

a(12) = #{9+3,8+4,7+5,6+6,6+3+3,5+4+3,4+4+4,3+3+3+3} = 8;

a(13) = #{9+4,9+2+2,8+5,7+6,7+4+2,7+2+2+2,6+5+2,5+4+4,5+4+2+2,5+2+2+2+2} = 10.

PROG

(PARI) a(n)={my(S=Set(digits(n))); polcoef(1/prod(k=1, 9, 1 - if(!setsearch(S, k), x^k) + O(x*x^n)), n)} \\ Andrew Howroyd, Feb 02 2020

EXTENSIONS

Terms a(38) and beyond from Andrew Howroyd, Feb 02 2020

STATUS

approved

editing

#2 by Russ Cox at Fri Mar 30 18:50:59 EDT 2012
AUTHOR

_Reinhard Zumkeller (reinhard.zumkeller(AT)gmail.com), _, Dec 30 2007

Discussion
Fri Mar 30
18:50
OEIS Server: https://oeis.org/edit/global/246
#1 by N. J. A. Sloane at Sun Jun 29 03:00:00 EDT 2008
NAME

Number of partitions of n into parts which are not digits of n in decimal representation.

DATA

0, 1, 2, 4, 6, 10, 14, 21, 29, 11, 13, 8, 10, 18, 23, 33, 40, 55, 64, 170, 35, 244, 119, 174, 234, 303, 384, 475, 577, 1215, 180, 399, 1844, 904, 1194, 1538, 1901

OFFSET

1,3

EXAMPLE

a(12)=#{9+3,8+4,7+5,6+6,6+3+3,5+4+3,4+4+4,3+3+3+3}=8;

a(13)=#{9+4,9+2+2,8+5,7+6,7+4+2,7+2+2+2,6+5+2,5+4+4,5+4+2+2,5+2+2+2+2}=10.

CROSSREFS

Cf. A061827.

KEYWORD

nonn,base

AUTHOR

Reinhard Zumkeller (reinhard.zumkeller(AT)gmail.com), Dec 30 2007

STATUS

approved