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!)
A125823 Numbers whose base 7 representation is 4444....4. 1
0, 4, 32, 228, 1600, 11204, 78432, 549028, 3843200, 26902404, 188316832, 1318217828, 9227524800, 64592673604, 452148715232, 3165041006628, 22155287046400, 155087009324804, 1085609065273632, 7599263456915428, 53194844198408000, 372363909388856004, 2606547365721992032 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = 2*(7^(n-1) - 1)/3 = 4*A023000(n-1).
a(n) = 7*a(n-1) + 4, with a(1)=0. - Vincenzo Librandi, Sep 30 2010
From G. C. Greubel, Aug 03 2019: (Start)
G.f.: 4*x^2/((1-x)*(1-7*x)).
E.g.f.: 2*(exp(7*x) - exp(x))/3. (End)
EXAMPLE
Base 7.................decimal
0.........................0
4.........................4
44.......................32
444.....................228
4444...................1600
44444.................11204
444444................78432
4444444..............549028
44444444............3843200
etc....................etc...
MAPLE
seq(4*(7^n-1)/6, n=0..21);
MATHEMATICA
2*(7^(Range[30]-1) -1)/3 (* G. C. Greubel, Aug 03 2019 *)
PROG
(PARI) vector(30, n, 2*(7^(n-1) -1)/3) \\ G. C. Greubel, Aug 03 2019
(Magma) [2*(7^(n-1) -1)/3: n in [1..30]]; // G. C. Greubel, Aug 03 2019
(Sage) [2*(7^(n-1) -1)/3 for n in (1..30)] # G. C. Greubel, Aug 03 2019
(GAP) List([1..30], n-> 2*(7^(n-1) -1)/3); # G. C. Greubel, Aug 03 2019
CROSSREFS
Cf. A023000.
Sequence in context: A099269 A316810 A299656 * A320366 A317560 A302742
KEYWORD
easy,nonn
AUTHOR
Zerinvary Lajos, Feb 03 2007
EXTENSIONS
Terms a(21) onward added by G. C. Greubel, Aug 03 2019
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 April 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)