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!)
A284815 Least number k such that k mod (2, 3, 4, ... , n+1) = (d_n, d_n-1, ..., d_1), where d_1 , d_2, ..., d_n are the digits of k, with MSD(k) = d_1 and LSD(k) = d_n. 0 if such a number does not exist. 2
1, 10, 0, 1101, 11311, 340210, 4620020, 12040210, 151651121, 1135531101, 0, 894105331101, 0, 15379177511311, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
Conjecture: a(n) = 0 for all n >= 15. - Max Alekseyev, Nov 10 2022
EXAMPLE
a(7) = 4620020 because:
4620020 mod 2 = 0, 4620020 mod 3 = 2, 4620020 mod 4 = 0,
4620020 mod 5 = 0, 4620020 mod 6 = 2, 4620020 mod 7 = 6,
4620020 mod 8 = 4.
MAPLE
P:=proc(q) local a, d, j, k, n, ok; for k from 1 to q do d:=0; for n from 10^(k-1) to 10^k-1 do
ok:=1; a:=n; for j from 1 to ilog10(n)+1 do if (a mod 10)<>n mod (j+1)
then ok:=0; break; else a:=trunc(a/10); fi; od; if ok=1 then print(n); d:=1; break; fi; od;
if n=10^k and d=0 then print(0); fi; od; end: P(20);
CROSSREFS
Sequence in context: A286018 A286646 A104013 * A286116 A286082 A286730
KEYWORD
nonn,base,hard
AUTHOR
Paolo P. Lava, Apr 10 2017
EXTENSIONS
a(11)-a(15) from Giovanni Resta, Apr 10 2017
a(16)-a(50) from Max Alekseyev, Nov 10 2022
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 March 28 20:05 EDT 2024. Contains 371254 sequences. (Running on oeis4.)