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!)
A181789 Pandigital biperiod squares: pandigital squares whose digits repeat twice in order. 3
183673469387755102041183673469387755102041, 326530612244897959184326530612244897959184, 734693877551020408164734693877551020408164, 132231404958677685950413223140496132231404958677685950413223140496 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Ondrejka asks in Problem 1130(b) (see reference) what the smallest biperiod square is in which the ten decimal digits occur equally often (an equipandigital biperiod square), but it remains unknown whether any such square even exists.
REFERENCES
R. Ondrejka, Problem 1130: Biperiod Squares, Journal of Recreational Mathematics, Vol. 14:4 (1981-82), 299. Solution by F. H. Kierstead, Jr., JRM, Vol. 15:4 (1982-83), 311-312.
LINKS
PROG
(Python)
from itertools import count, islice
from sympy import sqrt_mod
def A181789_gen(): # generator of terms
for j in count(9):
b = 10**j
a = b*10+1
for k in sorted(sqrt_mod(0, a, all_roots=True)):
if a*b <= (m:=k**2) < a*(a-1) and len(set(str(m//a))) == 10:
yield m
A181789_list = list(islice(A181789_gen(), 20)) # Chai Wah Wu, Mar 23 2024
CROSSREFS
Cf. A092118 (biperiod squares), A181790, A181791.
Sequence in context: A095476 A292856 A292846 * A095478 A291353 A095480
KEYWORD
nonn,base
AUTHOR
STATUS
approved

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 April 19 08:39 EDT 2024. Contains 371782 sequences. (Running on oeis4.)