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!)
A239437 Least number that is pandigital in some base >= n but not pandigital in bases 3 through n-1. 1
11, 78, 698, 12280, 179685, 5518135, 1037845296, 1037845296, 46935813565, 2860727439460, 285947759601954, 1018897102759406, 672654273047783383 (list; graph; refs; listen; history; text; internal format)
OFFSET
3,1
COMMENTS
Gives an upper bound on the testing needed to check membership in A239348.
LINKS
Charles R Greathouse IV, GP script for computing terms
FORMULA
Trivially a(n) >= A049363(n) > n^(n-1).
PROG
(PARI) See Greathouse link.
(Python)
from itertools import permutations
from gmpy2 import digits
def A239437(n): # requires 3 <= n <= 62
....m = n
....while True:
........s = ''.join([digits(i, m) for i in range(m)])
........for d in permutations(s, m):
............if d[0] != '0':
................c = mpz(''.join(d), m)
................for b in range(3, n):
....................if len(set(digits(c, b))) == b:
........................break
................else:
....................return int(c)
........m += 1 # Chai Wah Wu, May 31 2015
CROSSREFS
Subsequence of A154314. Cf. A239348.
Sequence in context: A041224 A030054 A225896 * A140542 A101983 A139953
KEYWORD
nonn,base,hard
AUTHOR
EXTENSIONS
a(15) from Giovanni Resta, Mar 19 2014
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 24 11:49 EDT 2024. Contains 371936 sequences. (Running on oeis4.)