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.

A121321 Numbers k such that every digit occurs at least once in k^4.

This page as a plain text file.
%I A121321 #15 Oct 16 2024 21:13:52
%S A121321 763,767,1066,1088,1206,1304,1425,1557,1561,1634,1653,1712,1739,1782,
%T A121321 1818,1839,1866,1878,1975,2032,2045,2055,2134,2192,2232,2233,2299,
%U A121321 2318,2339,2347,2358,2425,2441,2489,2509,2511,2575,2646,2682,2692
%N A121321 Numbers k such that every digit occurs at least once in k^4.
%H A121321 Lars Blomberg, <a href="/A121321/b121321.txt">Table of n, a(n) for n = 1..10000</a>
%e A121321 763^4 = 338920744561 contains every digits at least once.
%t A121321 Select[Range[2692],ContainsAll[IntegerDigits[#^4],Range[0,9]]&] (* _James C. McMahon_, Oct 16 2024 *)
%o A121321 (Magma) [ n: n in [0..2695] | Seqset(Intseq(n^4)) eq {0..9} ]; // _Bruno Berselli_, May 17 2011
%o A121321 (PARI) isok(k) = #Set(digits(k^4)) == 10;
%Y A121321 Cf. A119735 (in k^3), A054038 (in k^2).
%K A121321 nonn,base
%O A121321 1,1
%A A121321 _Tanya Khovanova_, Aug 25 2006