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.

A029469 Numbers k that divide the (right) concatenation of all numbers <= k written in base 24 (most significant digit on left).

This page as a plain text file.
%I A029469 #12 Jul 04 2021 01:58:12
%S A029469 1,2,3,4,6,8,10,12,20,23,24,32,36,46,48,62,64,69,72,86,92,96,107,138,
%T A029469 144,174,184,192,207,246,276,288,304,368,414,529,552,576,621,736,739,
%U A029469 759,768,828,864,947,1044,1058,1104,1136,1152,1224,1242,1472,1536
%N A029469 Numbers k that divide the (right) concatenation of all numbers <= k written in base 24 (most significant digit on left).
%H A029469 Robert Price, <a href="/A029469/b029469.txt">Table of n, a(n) for n = 1..192</a>
%t A029469 b = 24; c = {}; Select[Range[10^5], Divisible[FromDigits[c = Join[c, IntegerDigits[#, b]], b], #] &] (* _Robert Price_, Mar 11 2020 *)
%Y A029469 Cf. A029447-A029470, A029471-A029494, A029495-A029518, A029519-A029542, A061931-A061954, A061955-A061978.
%K A029469 nonn,base
%O A029469 1,2
%A A029469 _Olivier Gérard_