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.

A295005 Numbers n such that the largest digit of n^2 is 5.

This page as a plain text file.
%I A295005 #14 Sep 23 2021 19:34:43
%S A295005 5,15,35,39,45,50,55,65,71,105,112,115,145,150,155,185,188,205,211,
%T A295005 229,235,335,350,365,368,388,389,390,450,461,485,495,500,501,502,505,
%U A295005 550,579,585,595,635,650,652,665,671,710,711,715,718,729,735,745,1005,1015,1050
%N A295005 Numbers n such that the largest digit of n^2 is 5.
%H A295005 Michael S. Branicky, <a href="/A295005/b295005.txt">Table of n, a(n) for n = 1..10000</a>
%F A295005 a(n) = sqrt(A295015(n)), where sqrt = A000196 or A000194 or A003059.
%e A295005 39 is in this sequence because 39^2 = 1521 has 5 as largest digit.
%t A295005 Select[Sqrt[ #]&/@(FromDigits/@Select[Tuples[ Range[ 0,5],7],Max[#] == 5&]),IntegerQ] (* _Harvey P. Dale_, Sep 23 2021 *)
%o A295005 (PARI) select( is_A295005(n)=n&&vecmax(digits(n^2))==5 , [0..999]) \\ The "n&&" avoids an error message for n=0.
%o A295005 (Python)
%o A295005 def aupto(limit):
%o A295005   alst = []
%o A295005   for k in range(1, limit+1):
%o A295005     if max(str(k*k)) == "5": alst.append(k)
%o A295005   return alst
%o A295005 print(aupto(1050)) # _Michael S. Branicky_, May 15 2021
%Y A295005 Cf. A295015 (the corresponding squares), A277959 .. A277961 (same for digit 2 .. 4), A295006 .. A295009 (same for digit 6 .. 9).
%Y A295005 Cf. A000290 (the squares).
%K A295005 nonn,base
%O A295005 1,1
%A A295005 _M. F. Hasler_, Nov 12 2017