[go: up one dir, main page]

login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
Revision History for A104264 (Underlined text is an addition; strikethrough text is a deletion.)

Showing entries 1-10 | older changes
A104264 Number of n-digit squares with no zero digits.
(history; published version)
#22 by Michel Marcus at Sat Mar 06 12:56:30 EST 2021
STATUS

reviewed

approved

#21 by Joerg Arndt at Sat Mar 06 11:48:27 EST 2021
STATUS

proposed

reviewed

#20 by Michel Marcus at Sat Mar 06 11:36:10 EST 2021
STATUS

editing

proposed

#19 by Michel Marcus at Sat Mar 06 11:36:07 EST 2021
COMMENTS

Comments from David W. Wilson, Feb 26 2005:: (Start)

"We should expect an infinite number of zeroless k-th powers when this ratio is >= 1, which it is for k <= 21. For k >= 22, the ratio is < 1 and we should expect a finite number of zeroless k-th powers."." (End)

KEYWORD

nonn,base,more,changed

STATUS

proposed

editing

#18 by Michael S. Branicky at Sat Mar 06 11:04:59 EST 2021
STATUS

editing

proposed

#17 by Michael S. Branicky at Sat Mar 06 11:04:55 EST 2021
PROG

(Python)

def aupton(terms):

c, k, kk = [0 for i in range(terms)], 1, 1

while kk < 10**terms:

s = str(kk)

c[len(s)-1], k, kk = c[len(s)-1] + (s.count('0')==0), k+1, kk + 2*k + 1

return c

print(aupton(14)) # Michael S. Branicky, Mar 06 2021

STATUS

approved

editing

#16 by Alois P. Heinz at Wed Aug 21 22:58:42 EDT 2019
STATUS

editing

approved

#15 by Alois P. Heinz at Wed Aug 21 22:58:36 EDT 2019
CROSSREFS

Cf. A052041, A104265, A104266, A102794A075415, A102807.

STATUS

approved

editing

#14 by Bruno Berselli at Tue Jan 29 05:30:50 EST 2013
STATUS

proposed

approved

#13 by Donovan Johnson at Tue Jan 29 04:03:25 EST 2013
STATUS

editing

proposed

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 31 17:11 EDT 2024. Contains 375572 sequences. (Running on oeis4.)