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.

A235807 Numbers n such that n^3 has one or more occurrences of exactly five different digits.

This page as a plain text file.
%I A235807 #19 May 22 2025 10:21:36
%S A235807 22,24,27,29,32,35,38,41,47,48,49,51,52,54,55,57,61,63,65,71,72,82,85,
%T A235807 87,89,94,96,102,103,104,105,108,109,119,120,123,125,126,127,130,133,
%U A235807 134,136,137,138,141,143,144,149,152,153,154,155,158,162,165,167
%N A235807 Numbers n such that n^3 has one or more occurrences of exactly five different digits.
%H A235807 Colin Barker, <a href="/A235807/b235807.txt">Table of n, a(n) for n = 1..1000</a>
%e A235807 22 is in the sequence because 22^3 = 10648, which contains exactly five different digits: 0, 1, 4, 6, 8.
%e A235807 87 is in the sequence because 87^3 = 658503, which contains exactly five different digits: 0, 3, 5, 6, 8.
%t A235807 Select[Range[200], Length[Union[IntegerDigits[#^3]]] == 5 &] (* _Bruno Berselli_, Jan 19 2014 *)
%o A235807 (PARI) s=[]; for(n=1, 200, if(#vecsort(eval(Vec(Str(n^3))),,8)==5, s=concat(s, n))); s
%o A235807 (Magma) [n: n in [0..200] | #Set(Intseq(n^3)) eq 5]; // _Bruno Berselli_, Jan 19 2014
%o A235807 (Python)
%o A235807 A235807_list, m = [], [6, -6, 1, 0]
%o A235807 for n in range(1,10**5+1):
%o A235807     for i in range(3):
%o A235807         m[i+1] += m[i]
%o A235807     if len(set(str(m[-1]))) == 5:
%o A235807         A235807_list.append(n) # _Chai Wah Wu_, Nov 05 2014
%Y A235807 Cf. A030292, A155146, A155147, A235808-A235811, A119735.
%K A235807 nonn,base
%O A235807 1,1
%A A235807 _Colin Barker_, Jan 19 2014