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.

A369953 a(n) is the least integer k such that the sum of the digits of k^2 is 9*n.

This page as a plain text file.
%I A369953 #73 Feb 20 2024 10:40:10
%S A369953 0,3,24,63,264,1374,3114,8937,60663,94863,545793,1989417,5477133,
%T A369953 20736417,82395387,260191833,706399164,2428989417,9380293167,
%U A369953 28105157886,99497231067,538479339417,1974763271886,4472135831667,14106593458167,62441868958167,244744764757083,836594274358167
%N A369953 a(n) is the least integer k such that the sum of the digits of k^2 is 9*n.
%C A369953 3|a(n).
%H A369953 Zhining Yang, <a href="/A369953/b369953.txt">Table of n, a(n) for n = 0..40</a> (terms 19..40 from Zhao Hui Du)
%H A369953 Shouen Wang, <a href="http://bbs.mathchina.com/bbs/forum.php?mod=viewthread&amp;tid=2060076">Chinese BBS: How many of these A's are there?</a>
%F A369953 a(n) = A067179(4n).
%e A369953 a(3)=63 because k=63 is the least integer k such that the sum of the digits of k^2 = 3969 is 9*3 = 27 (3+9+6+9 = 27).
%t A369953 n=1;lst={};For[k=0,k<10^8,k+=3,If[Total[IntegerDigits[k^2]]==9*n,AppendTo[lst,k];n++]];lst
%o A369953 (Python)
%o A369953 n=1
%o A369953 lst=[]
%o A369953 for k in range(0,10**8,3):
%o A369953     if sum(int(d) for d in str(k*k))==9*n:
%o A369953         lst.append(k)
%o A369953         n=n+1
%o A369953 print(lst)
%o A369953 (PARI) a(n) = my(k=0); while(sumdigits(k^2) != 9*n, k+=3); k; \\ _Michel Marcus_, Feb 17 2024
%Y A369953 Cf. A004159, A008591, A067179, A369955.
%K A369953 nonn,base
%O A369953 0,2
%A A369953 _Zhining Yang_, Feb 06 2024
%E A369953 a(19)-a(27) from _Zhao Hui Du_, Feb 09 2024