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.

A029942 Numbers k such that the decimal expansion of k^3 contains k as a substring.

This page as a plain text file.
%I A029942 #38 Apr 04 2024 10:34:01
%S A029942 0,1,4,5,6,9,10,24,25,32,40,49,50,51,56,60,75,76,90,99,100,125,240,
%T A029942 249,250,251,375,376,400,490,499,500,501,510,600,624,625,749,750,751,
%U A029942 760,782,875,900,990,999,1000,1249,1250,2400,2490,2500,2510
%N A029942 Numbers k such that the decimal expansion of k^3 contains k as a substring.
%H A029942 Giovanni Resta, <a href="/A029942/b029942.txt">Table of n, a(n) for n = 1..1000</a> (first 500 terms from Reinhard Zumkeller)
%e A029942 24 is a term as 24^3 = 13824 contains 24 as a substring.
%e A029942 250 is a term as 250^3 = 1562500 contains 250 as a substring.
%e A029942 6^3 = 21_6, 782^3 = 4_782_11768.
%t A029942 n3ssQ[n_]:=Module[{idn=IntegerDigits[n],idn3=Partition[ IntegerDigits[ n^3], IntegerLength[n],1]},MemberQ[idn3,idn]]; Join[{0},Select[Range[ 2600],n3ssQ]] (* _Harvey P. Dale_, Jan 23 2012 *)
%t A029942 Select[Range[0,2600],SequenceCount[IntegerDigits[#^3],IntegerDigits[ #]]> 0&] (* _Harvey P. Dale_, Aug 29 2021 *)
%o A029942 (Haskell)
%o A029942 import Data.List (isInfixOf)
%o A029942 a029942 n = a029942_list !! (n-1)
%o A029942 a029942_list = [x | x <- [0..], show x `isInfixOf` show (x^3)]
%o A029942 -- _Reinhard Zumkeller_, Feb 29 2012
%Y A029942 Cf. A018834 (squares), A075904 (4th powers), A075905 (5th powers), A136490 (base 2).
%Y A029942 Cf. A000578. Supersequence of A029943.
%K A029942 nonn,base,nice
%O A029942 1,3
%A A029942 _Patrick De Geest_