A144563 Subset of A020342 (vampire numbers, definition 1) listing numbers which have more than one such representation of the desired form.
1260, 1395, 1530, 6880, 12060, 12550, 12600, 13950, 14350, 15030, 15300, 18270, 21870, 31590, 37840, 68800, 102510, 102550, 104260, 105210, 105250, 105264, 105750, 112590, 114390, 116928, 118440, 118480, 119682, 120060, 120600, 123840, 125050, 125460, 125500, 125950
Offset: 1
Examples
1260 = 21*60 = 6*210. 1395 = 5*9*31 = 15*93. 1530 = 30*51 = 3*510.
Links
- M. F. Hasler, Table of n, a(n) for n = 1..184, Nov 01 2021
Programs
-
PARI
/* Helper function: count number of representations of n as product of numbers >= m whose multiset of digits is D, excluding the trivial representation if m = 0. */ VampRepCount(n, m=0, D=vecsort(digits(n)))={ if(#D<3, m && (D[1]>=m && vecprod(D)==n || vecsort(digits(n))==D), n >= m^2, my(S=Set(D), c=m && vecsort(digits(n))==D, i, C); fordiv(n, f, f < m && next; f*f > n && break; setminus(Set(digits(f)), S) && next; C=D; foreach(digits(f), d, if(i = vecsearch(C,d), C=C[^i], next(2))); C && c += VampRepCount(n\f, f, C) ); c, n >= m && vecsort(digits(n))==D)} is_A144563(n)=VampRepCount(n)>1 \\ M. F. Hasler, Nov 01 2021
Formula
Extensions
Corrected A-number in definition. More terms and examples R. J. Mathar, Jan 05 2009
Terms beyond a(15) by M. F. Hasler, Nov 01 2021
Comments