OFFSET
1,1
COMMENTS
An LB number is a positive integer of the form n = a*10^k+b (with a > 0 and b < 10^k) satisfying two properties: 1) the set of prime factors of n is the union of the sets of prime factors of a and b; and 2) A001222(n) = A001222(a) + A001222(b) where A001222(n) = Bigomega(n) gives the number of primes divisors of n counted with multiplicity.
This sequence is an infinite subsequence of A267856.
a(13) > 10^7.
LINKS
Robert O. Stanton, The Remarkable Number 648, Mathematics Magazine, Vol. 66, No. 1 (Feb., 1993), pp. 48-55.
EXAMPLE
972 is a term since 972 is an LB number (see A267856 for the reason) and 972 is not 10*k where k is an LB number.
2500 is an LB number but is not a term of this sequence since 2500 = 10*20 and 250 is an LB number.
PROG
(PARI) already(n, v) = {for (k=1, #v, q = n/v[k]; if (denominator(q) == 1, e = valuation(q, 10); if (q == 10^e, return (1)); ); ); }
isok(n) = {nb = #Str(n); spf = Set(factor(n)[, 1]~); nbpfr = bigomega(n); for (k=1, nb-1, a = n\10^k; b = n - 10^k*a; if (b && (bigomega(a)+ bigomega(b) == nbpfr) && (setunion(factor(a)[, 1]~, factor(b)[, 1]~) == spf), return (1)); ); }
lista(nn) = {my(v = []); for (n=1, nn, if (isok(n) && ! already(n, v), print1(n, ", "); v = concat(v, n); ); ); } \\ Michel Marcus, Jan 31 2016
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Tom Edgar, Jan 29 2016
EXTENSIONS
a(13)-a(31) from Michel Marcus, Jan 30 2016
STATUS
approved