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.

A030104 Base 5 reversal of n (written in base 10).

This page as a plain text file.
%I A030104 #26 Aug 07 2024 03:38:04
%S A030104 0,1,2,3,4,1,6,11,16,21,2,7,12,17,22,3,8,13,18,23,4,9,14,19,24,1,26,
%T A030104 51,76,101,6,31,56,81,106,11,36,61,86,111,16,41,66,91,116,21,46,71,96,
%U A030104 121,2,27,52,77,102,7,32,57,82,107,12,37,62,87,112,17,42,67,92,117,22,47,72,97
%N A030104 Base 5 reversal of n (written in base 10).
%H A030104 Seiichi Manyama, <a href="/A030104/b030104.txt">Table of n, a(n) for n = 0..3124</a>
%t A030104 IntegerReverse[Range[0, 100], 5] (* _Paolo Xausa_, Aug 07 2024 *)
%o A030104 (PARI) a(n,b=5)=subst(Polrev(base(n,b)),x,b) /* where */
%o A030104 base(n,b)={my(a=[n%b]);while(n\=b,a=concat(n%b,a));a}  \\ _M. F. Hasler_, Nov 04 2011
%Y A030104 Cf. A134028, A030101 - A030108, A004086, A055950, A319722.
%K A030104 nonn,base,look,easy
%O A030104 0,3
%A A030104 _David W. Wilson_