A217419 Numbers factoring 3^r*11^s whose decimal representations are such that each of the digits 0-9 appears a prime number of times.
5586701408957811048315412506328906443, 4756351651546448722293215379849833244291829764770574840668685771747
Offset: 1
Examples
3^29 * 11^22 has two each of 2's, 7's and 9's; three each of 3's and 6's; and five each of 0's, 1's, 4's, 5's and 8's. No smaller number with only 3 and 11 as prime factors has a prime number of each digit 0-9, so a(1) is this value.
Crossrefs
Programs
-
PARI
{ k=33;a=[99];t=1;while(1, v=vectorsmall(10);m=k; while(m,d=m%10;m\=10;v[d+1];next()); f=1;for(i=1,10,if(isprime(v[i])==0,f=0;break())); if(f,F=factor(k);print1(3"^"F[1,2]"*"11"^"F[2,2]"="k"\n")); if(11^(t+1)
Comments