login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A178784
Let d be the vector of divisors of 100 sorted from largest to smallest, i.e., [100,50,25,20,10,5,4,2,1]. Then a(n) = 100/d(n) - 1.
0
0, 1, 3, 4, 9, 19, 24, 49, 99
OFFSET
1,3
FORMULA
a(n) = 100/A018283(10-n) - 1.
a(n) = A018283(n) - 1. - Ross La Haye, Jun 17 2010
MATHEMATICA
Map[(100/# - 1)&, Sort[Divisors[100], Greater]]
Map[(#-1)&, Divisors[100]] (* Ross La Haye, Jun 17 2010 *)
100/Reverse[Divisors[100]]-1 (* Harvey P. Dale, Jan 14 2015 *)
CROSSREFS
Cf. A018283.
Sequence in context: A304257 A217492 A374965 * A192288 A028344 A219680
KEYWORD
nonn,fini,full,easy
AUTHOR
Ross La Haye, Jun 13 2010
STATUS
approved