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.

A182363 a(n+1) = a(n) + floor(a(n)/10) with a(0) = 10.

This page as a plain text file.
%I A182363 #13 Dec 22 2024 12:03:36
%S A182363 10,11,12,13,14,15,16,17,18,19,20,22,24,26,28,30,33,36,39,42,46,50,55,
%T A182363 60,66,72,79,86,94,103,113,124,136,149,163,179,196,215,236,259,284,
%U A182363 312,343,377,414,455,500,550,605,665,731,804,884,972,1069,1175,1292
%N A182363 a(n+1) = a(n) + floor(a(n)/10) with a(0) = 10.
%H A182363 Paolo Xausa, <a href="/A182363/b182363.txt">Table of n, a(n) for n = 0..5000</a>
%t A182363 NestList[# + Floor[#/10] &, 10, 100] (* _Paolo Xausa_, Dec 22 2024 *)
%o A182363 (Python)
%o A182363 a=10
%o A182363 for i in range(55):
%o A182363     print(a, end=', ')
%o A182363     a += a//10
%Y A182363 Cf. A061418, A100585, A182305-A182308, A182361, A182362.
%K A182363 nonn
%O A182363 0,1
%A A182363 _Alex Ratushnyak_, Apr 26 2012