login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A182306 a(n+1) = a(n) + floor(a(n)/5) with a(0)=5. 4
5, 6, 7, 8, 9, 10, 12, 14, 16, 19, 22, 26, 31, 37, 44, 52, 62, 74, 88, 105, 126, 151, 181, 217, 260, 312, 374, 448, 537, 644, 772, 926, 1111, 1333, 1599, 1918, 2301, 2761, 3313, 3975, 4770, 5724, 6868, 8241, 9889, 11866, 14239, 17086, 20503, 24603, 29523, 35427, 42512 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
MAPLE
f:= proc(n) option remember; procname(n-1) + floor(procname(n-1)/5)
end proc:
f(0):= 5:
map(f, [$0..100]); # Robert Israel, Mar 12 2018
PROG
(Python)
a=5
for i in range(55):
. print a,
. a += a/5
CROSSREFS
Sequence in context: A120190 A172072 A121542 * A023379 A003667 A138469
KEYWORD
nonn
AUTHOR
Alex Ratushnyak, Apr 23 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 24 05:58 EDT 2024. Contains 374575 sequences. (Running on oeis4.)