The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A016127 Expansion of 1/((1-2*x)*(1-5*x)). 18
1, 7, 39, 203, 1031, 5187, 25999, 130123, 650871, 3254867, 16275359, 81378843, 406898311, 2034499747, 10172515119, 50862608363, 254313107351, 1271565667827, 6357828601279, 31789143530683 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
With leading zero, binomial transform of A002450. - Paul Barry, Apr 11 2003
The sequence of fractions a(n)/(n+1) is the 3rd binomial transform of the sequence of fractions J(n+1)/(n+1) where J(n) is A001045(n). - Paul Barry, Aug 05 2005
Equals term (1,2) in M^n, M = the 3 X 3 matrix [1, 1, 3; 1, 3, 1; 3, 1, 1]. a(n)/ a(n-1) tends to 5, a root to the charpoly x^3 - 5x^2 -4x + 20. - Gary W. Adamson, Mar 12 2009
LINKS
Kalika Prasad, Munesh Kumari, Rabiranjan Mohanta, and Hrishikesh Mahato, The sequence of higher order Mersenne numbers and associated binomial transforms, arXiv:2307.08073 [math.NT], 2023.
FORMULA
a(n) = (5^(n+1) - 2^(n+1))/3 = Sum_{i=0..n} 5^i*2^(n-1) = 5*a(n-1) + 2^n =2*a(n-1) + 5^n. - Henry Bottomley, Apr 07 2003
Binomial transform of A020989. - Paul Barry, May 18 2003
From Paul Barry, Aug 05 2005: (Start)
a(n) = Sum_{k=0..n} Sum_{j=0..n} 5^(n-j)*binomial(j, k);
a(n) = Sum_{k=0..n} 2^k*5^(n-k) = Sum_{k=0..n} 5^k*2^(n-k). (End)
For n > 2, a(n) = 9*a(n-1) - 24*a(n-2) + 20*a(n-3). - Gary W. Adamson, Dec 26 2007
MATHEMATICA
Join[{a=1, b=7}, Table[c=7*b-10*a; a=b; b=c, {n, 60}]] (* Vladimir Joseph Stephan Orlovsky, Jan 18 2011 *)
CoefficientList[Series[1/((1 - 2 x) (1 - 5 x)), {x, 0, 19}], x] (* Michael De Vlieger, Jan 31 2018 *)
LinearRecurrence[{7, -10}, {1, 7}, 30] (* Harvey P. Dale, Aug 18 2020 *)
PROG
(Sage) [lucas_number1(n, 7, 10) for n in range(1, 21)] # Zerinvary Lajos, Apr 23 2009
(Sage) [(5^n - 2^n)/3 for n in range(1, 21)] # Zerinvary Lajos, Jun 05 2009
(Magma) [(5^(n+1)-2^(n+1))/3: n in [0..30]]; // Vincenzo Librandi, Jun 08 2011
(PARI) Vec(1/((1-2*x)*(1-5*x))+O(x^99)) \\ Charles R Greathouse IV, Sep 23 2012
CROSSREFS
Sequence in context: A026752 A026379 A026708 * A099460 A246987 A322876
KEYWORD
nonn,easy
AUTHOR
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 May 19 00:35 EDT 2024. Contains 372666 sequences. (Running on oeis4.)