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”).

A208449
Numerator of A010786(n+1) / A010786(n).
4
2, 3, 8, 5, 18, 7, 64, 27, 25, 11, 288, 13, 98, 225, 1024, 17, 729, 19, 2000, 147, 242, 23, 55296, 125, 169, 729, 10976, 29, 1125, 31, 32768, 1089, 289, 1225, 209952, 37, 722, 507, 640000, 41, 64827, 43, 42592, 91125, 1058, 47, 14155776, 343, 15625, 2601
OFFSET
1,1
LINKS
FORMULA
a(n) = A010786(n+1) / A208448(n).
PROG
(Haskell)
import Data.Ratio ((%), numerator)
a208449 n = a208449_list !! (n-1)
a208449_list = map numerator $
zipWith (%) (tail a010786_list) a010786_list
CROSSREFS
Cf. A208450 (denominator).
Sequence in context: A075384 A072500 A376014 * A346957 A062956 A333375
KEYWORD
nonn,frac
AUTHOR
Reinhard Zumkeller, Feb 26 2012
STATUS
approved