A167050 Squarefree numbers with as many decimal digits as distinct prime factors.
2, 3, 5, 7, 10, 14, 15, 21, 22, 26, 33, 34, 35, 38, 39, 46, 51, 55, 57, 58, 62, 65, 69, 74, 77, 82, 85, 86, 87, 91, 93, 94, 95, 102, 105, 110, 114, 130, 138, 154, 165, 170, 174, 182, 186, 190, 195, 222, 230, 231, 238, 246, 255, 258, 266, 273, 282, 285, 286, 290, 310
Offset: 1
Examples
138 = 2*3*23 and 138 is squarefree with three digits.
References
- R. E. Woodrow, The Olympiad Corner, No. 226, Crux Mathematicorum, v28-n8(2002), 481.
Links
- Charles R Greathouse IV, Table of n, a(n) for n = 1..4352 (complete sequence).
- XV Gara Nazionale di Matematica, Cesenatico, 7 Maggio 1999, exercise 2.
- Bernard Schott, List of the 4352 terms of the sequence A167050.
- Juge Ti, Bernard Schott, Jean-Louis Tu and Norbert Verdier, QDV 17: Question ouverte sans titre (French mathematical forum les-mathematiques.net).
- Index to sequences related to Olympiads and other Mathematical competitions.
Programs
-
Maple
A001221 := proc(n) nops(numtheory[factorset](n)) ; end: A055642 := proc(n) max(1,ilog10(n)+1) ; end: isA167050 := proc(n) numtheory[issqrfree](n) and A055642(n) = A001221(n) end: for n from 1 to 300 do if isA167050(n) then printf("%d,",n) ; fi; end do; # R. J. Mathar, Nov 03 2009 A Maple program is proposed by "Juge Ti" on the French mathematical forum in link for answering to the two questions (last number and cardinal of this set).
-
Mathematica
Select[Range[400],SquareFreeQ[#]&&PrimeNu[#]==IntegerLength[#]&] (* Harvey P. Dale, Jun 26 2021 *)
-
PARI
is(n)=issquarefree(n)&Str(n)==omega(n) \\ Charles R Greathouse IV, Feb 04 2013
Extensions
Definition rephrased and formula added by R. J. Mathar, Nov 05 2009
Comments