A057651
a(n) = (3*5^n - 1)/2.
Original entry on oeis.org
1, 7, 37, 187, 937, 4687, 23437, 117187, 585937, 2929687, 14648437, 73242187, 366210937, 1831054687, 9155273437, 45776367187, 228881835937, 1144409179687, 5722045898437, 28610229492187, 143051147460937, 715255737304687, 3576278686523437, 17881393432617187, 89406967163085937
Offset: 0
a(0) = 1;
a(1) = 1 + 5 + 1 = 7;
a(2) = 1 + 5 + 25 + 5 + 1 = 37;
a(3) = 1 + 5 + 25 + 125 + 25 + 5 + 1 = 187; etc. - _Philippe Deléham_, Feb 23 2014
G.f. = 1 + 7*x + 37*x^2 + 187*x^3 + 937*x^4 + 4687*x^5 + 23437*x^6 + ...
-
[(3*5^n-1)/2: n in [0..30]]; // Vincenzo Librandi, Oct 30 2011
-
G.f=(1+x)/(1-5*x)/(1-x): gser:=series(g, x=0, 43): seq(coeff(gser, x, n), n=0..30); # Zerinvary Lajos, Jan 11 2009
-
Table[(3*5^n-1)/2,{n,0,30}] (* Vladimir Joseph Stephan Orlovsky, Jan 29 2012 *)
-
a(n)=3*5^n\2 \\ Charles R Greathouse IV, Dec 22 2011
A198480
a(n) = 2*7^n - 1.
Original entry on oeis.org
1, 13, 97, 685, 4801, 33613, 235297, 1647085, 11529601, 80707213, 564950497, 3954653485, 27682574401, 193778020813, 1356446145697, 9495123019885, 66465861139201, 465261027974413, 3256827195820897, 22797790370746285
Offset: 0
-
[2*7^n-1: n in [0..20]]
-
CoefficientList[Series[(1+5*x)/((1-x)*(1-7*x)),{x,0,40}],x] (* Vincenzo Librandi, Jul 06 2012 *)
2*7^Range[0,20]-1 (* or *) LinearRecurrence[{8,-7},{1,13},20] (* Harvey P. Dale, Aug 19 2022 *)
-
A198480(n):=2*7^n-1$ makelist(A198480(n),n,0,20); /* Martin Ettl, Nov 09 2012 */
-
a(n)=2*7^n-1 \\ Charles R Greathouse IV, Dec 28 2011
A081654
a(n) = 2*4^n - 0^n.
Original entry on oeis.org
1, 8, 32, 128, 512, 2048, 8192, 32768, 131072, 524288, 2097152, 8388608, 33554432, 134217728, 536870912, 2147483648, 8589934592, 34359738368, 137438953472, 549755813888, 2199023255552, 8796093022208, 35184372088832
Offset: 0
a(0) = 2*4^0 - 0^0 = 2 - 1 = 1 (use 0^0 = 1).
A081656
a(n) = 2*6^n - 2^n.
Original entry on oeis.org
1, 10, 68, 424, 2576, 15520, 93248, 559744, 3358976, 20154880, 120931328, 725592064, 4353560576, 26121379840, 156728311808, 940369936384, 5642219749376, 33853318758400, 203119913074688, 1218719479496704, 7312316879077376, 43873901278658560, 263243407680339968
Offset: 0
-
[2*6^n-2^n: n in [0..30]]; // Vincenzo Librandi, Aug 10 2013
-
CoefficientList[Series[(1 + 2 x) / ((1 - 6 x) (1 - 2 x)), {x, 0, 40}], x] (* Vincenzo Librandi, Aug 10 2013 *)
Table[2*6^n-2^n,{n,0,20}] (* or *) LinearRecurrence[{8,-12},{1,10},20] (* Harvey P. Dale, Mar 17 2019 *)
-
a(n)=2*6^n-2^n \\ Charles R Greathouse IV, Oct 07 2015
Original entry on oeis.org
5, 41, 293, 2057, 14405, 100841, 705893, 4941257, 34588805, 242121641, 1694851493, 11863960457, 83047723205, 581334062441, 4069338437093, 28485369059657, 199397583417605, 1395783083923241, 9770481587462693, 68393371112238857
Offset: 0
Original entry on oeis.org
2, 14, 74, 374, 1874, 9374, 46874, 234374, 1171874, 5859374, 29296874, 146484374, 732421874, 3662109374, 18310546874, 91552734374, 457763671874, 2288818359374, 11444091796874, 57220458984374, 286102294921874, 1430511474609374, 7152557373046874, 35762786865234374
Offset: 0
-
[(3*5^n-1): n in [0..30]];
-
CoefficientList[Series[2*(1 + x)/(1 - 6*x + 5*x^2), {x, 0, 30}], x] (* Vincenzo Librandi, Jan 04 2013 *)
LinearRecurrence[{6,-5},{2,14},30] (* Harvey P. Dale, Mar 19 2013 *)
Original entry on oeis.org
5, 29, 149, 749, 3749, 18749, 93749, 468749, 2343749, 11718749, 58593749, 292968749, 1464843749, 7324218749, 36621093749, 183105468749, 915527343749, 4577636718749, 22888183593749, 114440917968749, 572204589843749, 2861022949218749
Offset: 0
-
[6*5^n-1: n in [0..30]]
-
CoefficientList[Series[(5 - x)/(1 - 6*x + 5*x^2), {x, 0, 30}], x] (* Vincenzo Librandi, Jan 04 2013 *)
6*5^Range[0,30]-1 (* or *) LinearRecurrence[{6,-5},{5,29},30] (* Harvey P. Dale, Dec 21 2014 *)
A137215
a(n) = 3*(10^n) + (n^2 + 1)*(10^n - 1)/9.
Original entry on oeis.org
3, 32, 355, 4110, 48887, 588886, 7111107, 85555550, 1022222215, 12111111102, 142222222211, 1655555555542, 19111111111095, 218888888888870, 2488888888888867, 28111111111111086, 315555555555555527, 3522222222222222190, 39111111111111111075, 432222222222222222182
Offset: 0
a(3) = 3*10^3 + (3*3 + 1)*(10^3 - 1)/9 = 4110.
-
Table[3*10^n +(n^2 +1)*(10^n -1)/9, {n,0,30}] (* G. C. Greubel, Jan 05 2022 *)
-
a(n) = 3*(10^n) + (n*n+1)*((10^n)-1)/9; \\ Jinyuan Wang, Feb 27 2020
-
[3*10^n +(1+n^2)*(10^n -1)/9 for n in (0..30)] # G. C. Greubel, Jan 05 2022
Original entry on oeis.org
3, 27, 195, 1371, 9603, 67227, 470595, 3294171, 23059203, 161414427, 1129900995, 7909306971, 55365148803, 387556041627, 2712892291395, 18990246039771, 132931722278403, 930522055948827, 6513654391641795, 45595580741492571
Offset: 0
-
[4*7^n-1: n in [0..30]]
-
4*7^Range[0,20]-1 (* or *) LinearRecurrence[{8,-7},{3,27},20] (* Harvey P. Dale, Dec 27 2011 *)
Original entry on oeis.org
4, 34, 244, 1714, 12004, 84034, 588244, 4117714, 28824004, 201768034, 1412376244, 9886633714, 69206436004, 484445052034, 3391115364244, 23737807549714, 166164652848004, 1163152569936034, 8142067989552244, 56994475926865714
Offset: 0
-
[5*7^n-1: n in [0..30]]
-
CoefficientList[Series[(4+2*x)/((1-x)*(1-7*x)),{x,0,40}],x] (* Vincenzo Librandi, Jul 06 2012 *)
LinearRecurrence[{8,-7},{4,34},20] (* Harvey P. Dale, Jul 23 2024 *)
Showing 1-10 of 21 results.
Comments