[go: up one dir, main page]

login
Revision History for A079238 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing all changes.
Numbers n in which the last K digits of n form an integer divisible by K^2, for K = 1, 2, ..., M, where M is the number of digits in n.
(history; published version)
#5 by Charles R Greathouse IV at Thu Nov 21 12:47:57 EST 2013
MATHEMATICA

idkQ[n_]:=Module[{idn=IntegerDigits[n]}, And@@Table[Divisible[ FromDigits[ Take[idn, -i]], i^2], {i, Length[idn]}]]; Select[Range[1700], idkQ] (* From _Harvey P. Dale, _, Apr 10 2012 *)

Discussion
Thu Nov 21
12:47
OEIS Server: https://oeis.org/edit/global/2062
#4 by Harvey P. Dale at Tue Apr 10 13:39:45 EDT 2012
STATUS

editing

approved

#3 by Harvey P. Dale at Tue Apr 10 13:39:17 EDT 2012
COMMENTS

The terms satisfying the definition become increasingly rare as the number of their digits increases. There are only 214 such terms up to 1 million, the last of which is 990000. [From Harvey P. Dale, Apr 10 2012]

LINKS

Harvey P. Dale, <a href="/A079238/b079238.txt">Table of n, a(n) for n = 1..200</a>

MATHEMATICA

idkQ[n_]:=Module[{idn=IntegerDigits[n]}, And@@Table[Divisible[ FromDigits[ Take[idn, -i]], i^2], {i, Length[idn]}]]; Select[Range[1700], idkQ] (* From Harvey P. Dale, Apr 10 2012 *)

STATUS

approved

editing

#2 by N. J. A. Sloane at Sat Sep 13 03:00:00 EDT 2003
NAME

Numbers n in which the last K digits of n form an integer divisible by K^2, for K = 1, 2, ..., M, where M is the number of digits in n .

EXAMPLE

a(84)=4864 because 4 is divisible by 1^2, 64 by 2^2, 864 by 3^2, 4864 by 4^2 .

KEYWORD

base,nonn,new

#1 by N. J. A. Sloane at Fri May 16 03:00:00 EDT 2003
NAME

Numbers n in which the last K digits of n form an integer divisible by K^2, for K = 1, 2, ..., M, where M is the number of digits in n .

DATA

1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 16, 20, 24, 28, 32, 36, 40, 44, 48, 52, 56, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 108, 144, 180, 216, 252, 288, 324, 360, 396, 432, 468, 504, 540, 576, 612, 648, 684, 720, 756, 792, 828, 864, 900, 936, 972, 1072, 1216, 1360, 1504, 1648

OFFSET

1,2

EXAMPLE

a(84)=4864 because 4 is divisible by 1^2, 64 by 2^2, 864 by 3^2, 4864 by 4^2 .

KEYWORD

base,nonn

AUTHOR

Sudipta Das (juitech(AT)vsnl.net), Feb 03 2003

STATUS

approved