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!)
A125725 Numbers whose base-7 representation is 222....2. 2
0, 2, 16, 114, 800, 5602, 39216, 274514, 1921600, 13451202, 94158416, 659108914, 4613762400, 32296336802, 226074357616, 1582520503314, 11077643523200, 77543504662402, 542804532636816, 3799631728457714, 26597422099204000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = (7^(n-1) - 1)/3 = 2*A023000(n-1).
a(n) = 7*a(n-1) + 2, with a(1)=0. - Vincenzo Librandi, Sep 30 2010
G.f.: 2*x^2 / ( (1-x)*(1-7*x) ). - R. J. Mathar, Sep 30 2013
From Davis Smith, Apr 04 2019: (Start)
A007310(a(n) + 1) = 7^(n - 1).
A047522(a(n + 1)) = -1*A165759(n). (End)
EXAMPLE
base 7.......decimal
0..................0
2..................2
22................16
222..............114
2222.............800
22222...........5602
222222.........39216
2222222.......274514
22222222.....1921600
222222222...13451202
etc...........etc.
MAPLE
seq(2*(7^n-1)/6, n=0..25);
MATHEMATICA
FromDigits[#, 7]&/@Table[PadLeft[{2}, n, 2], {n, 0, 25}] (* Harvey P. Dale, Apr 13 2011 *)
(7^(Range[25]-1) - 1)/3 (* G. C. Greubel, May 23 2019 *)
PROG
(PARI) vector(25, n, (7^(n-1)-1)/3) \\ Davis Smith, Apr 04 2019
(Magma) [0] cat [n:n in [1..15000000]| Set(Intseq(n, 7)) subset [2]]; // Marius A. Burtea, May 06 2019
(Magma) [(7^(n-1)-1)/3: n in [1..25]]; // Marius A. Burtea, May 06 2019
(Sage) [(7^(n-1) -1)/3 for n in (1..25)] # G. C. Greubel, May 23 2019
(GAP) List([1..25], n-> (7^(n-1) -1)/3) # G. C. Greubel, May 23 2019
CROSSREFS
Cf. also A002276, A005610, A020988, A024023, A125831, A125835, A125857 for related or similarly constructed sequences.
Sequence in context: A288970 A037564 A361743 * A288965 A207420 A207736
KEYWORD
easy,nonn,base
AUTHOR
Zerinvary Lajos, Feb 02 2007
EXTENSIONS
Offset corrected by N. J. A. Sloane, Oct 02 2010
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 16 00:16 EDT 2024. Contains 372549 sequences. (Running on oeis4.)