cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A030292 Numbers k such that k^3 has at most two different digits.

This page as a plain text file.
%I A030292 #37 Mar 18 2022 23:06:09
%S A030292 0,1,2,3,4,7,10,11,20,100,200,1000,2000,10000,20000,100000,200000,
%T A030292 1000000,2000000,10000000,20000000,100000000,200000000,1000000000,
%U A030292 2000000000,10000000000,20000000000
%N A030292 Numbers k such that k^3 has at most two different digits.
%C A030292 Except for 0, 3, 4, 7, and 11, each term is of the form 10^x or 2*10^x. - _Harvey P. Dale_, Feb 05 2013
%p A030292 filter:= n -> nops(convert(convert(n^3,base,10),set)) <= 2:
%p A030292 select(filter, [$1..10^5]); # _Robert Israel_, Nov 10 2014
%t A030292 Join[Select[Range[0,20],Count[DigitCount[#^3],0]>7&],Flatten[Table[{10^n,2*10^n},{n,2,10}]]] (* _Harvey P. Dale_, Nov 23 2019 *)
%o A030292 (Python)
%o A030292 A030292_list, m = [0], [6, -6, 1, 0]
%o A030292 for n in range(1,10**6+1):
%o A030292     for i in range(3):
%o A030292         m[i+1] += m[i]
%o A030292     if len(set(str(m[-1]))) <= 2:
%o A030292         A030292_list.append(n) # _Chai Wah Wu_, Nov 05 2014
%o A030292 (PARI) isok(n) = #Set(digits(n^3)) <= 2; \\ _Michel Marcus_, Nov 10 2014
%o A030292 (Magma) [n: n in [0..4000000] | #Set(Intseq(n^3)) le 2]; // _Vincenzo Librandi_, Nov 10 2014
%K A030292 nonn,base,nice
%O A030292 1,3
%A A030292 _Patrick De Geest_
%E A030292 More terms from _Lior Manor_, Jul 24 2001