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.

A075016 Smallest k such that the concatenation k, k-1,k-2 is divisible by n; or 0 if no such number exists.

This page as a plain text file.
%I A075016 #6 Nov 01 2019 15:29:35
%S A075016 2,2,2,4,2,2,2,4,4,2,12,4,105,2,2,4,7,4,18,22,2,12,11,4,27,118,4,106,
%T A075016 21,2,23,14,12,34,2,4,112,18,105,22,15,2,39,34,7,14,9,4,141,52,7,118,
%U A075016 58,4,12,106,18,50,38,22,10,54,106,14,157
%N A075016 Smallest k such that the concatenation k, k-1,k-2 is divisible by n; or 0 if no such number exists.
%H A075016 Harvey P. Dale, <a href="/A075016/b075016.txt">Table of n, a(n) for n = 1..1000</a>
%e A075016 a(11) = 12 as 11 divides 121110.
%t A075016 skc[n_]:=Module[{k=2},While[Mod[FromDigits[Flatten[IntegerDigits/@ Range[ k,k-2,-1]]],n]!=0,k++];k]; Array[skc,70] (* _Harvey P. Dale_, Nov 01 2019 *)
%Y A075016 Cf. A075113, A075114, A075115, A075117.
%K A075016 base,nonn
%O A075016 1,1
%A A075016 _Amarnath Murthy_, Sep 01 2002
%E A075016 More terms from Antonio G. Astudillo (afg_astudillo(AT)lycos.com), Apr 19 2003