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.

Showing 1-1 of 1 results.

A074100 Cubes using only digits 1, 2, 3, 5 and 7.

Original entry on oeis.org

1, 27, 125, 512, 1331, 3375, 753571, 2571353, 5177717, 17173512, 25153757, 72511713, 11512557512, 22211737731, 27135225125, 125375375125, 552377215125, 2252212155712, 3531251132352, 7127771131125, 23771111713777, 31122112521375, 37521355131352, 125112533753375
Offset: 1

Views

Author

Amarnath Murthy, Aug 21 2002

Keywords

Comments

Conjecture: the sequence is finite.
Opposite conjecture: the sequence is infinite. The frequency of terms with k digits is 4, 3, 5, 5, 9, 11, 12, 13, 22, 29, 33, 37, 49, 49, 78 for k = 1..15 respectively. - David A. Corneth, Mar 17 2019

Examples

			137^3 = 2571353, smallest term using the five digits 1, 2, 3, 5 and 7. - _Bernard Schott_, Mar 18 2019
91^3 = 753571 as 753571 uses only digits from 1, 2, 3, 5 and 7. It's fine that 91 doesn't. - _David A. Corneth_, Mar 18 2019
		

Crossrefs

Cf. A079656.

Programs

  • Mathematica
    t1 = Prepend[Prime[Range[4]], 1]; Select[Range[35000]^3, Complement[IntegerDigits[#], t1] == {} &] (* Jayanta Basu, Jul 31 2013 *)
  • Python
    A074100_list = [n**3 for n in range(1,10**6) if set(str(n**3)) <= set('12357')] # Chai Wah Wu, Mar 16 2019

Extensions

More terms from Sascha Kurz, Jan 30 2003
Two more terms from Jayanta Basu, Jul 31 2013
Showing 1-1 of 1 results.