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!)
A009976 Powers of 32. 18
1, 32, 1024, 32768, 1048576, 33554432, 1073741824, 34359738368, 1099511627776, 35184372088832, 1125899906842624, 36028797018963968, 1152921504606846976, 36893488147419103232, 1180591620717411303424 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Same as Pisot sequences E(1, 32), L(1, 32), P(1, 32), T(1, 32). Essentially same as Pisot sequences E(32, 1024), L(32, 1024), P(32, 1024), T(32, 1024). See A008776 for definitions of Pisot sequences.
The compositions of n in which each natural number is colored by one of p different colors are called p-colored compositions of n. For n>=1, a(n) equals the number of 32-colored compositions of n such that no adjacent parts have the same color. - Milan Janjic, Nov 17 2011
LINKS
Philip DeOrsey, Stephen G. Hartke, and Jason Williford, A Classification of Hyperfocused 12-Arcs, arXiv:2105.08300 [math.CO], 2021.
Tanya Khovanova, Recursive Sequences
FORMULA
G.f.: 1/(1-32*x). - Philippe Deléham, Nov 24 2008
a(n) = 32^n; a(n) = 32*a(n-1) for n > 0, a(0)=1. - Vincenzo Librandi, Nov 21 2010
EXAMPLE
a(6) = 32^6 = 1073741824.
MAPLE
A009976:=n->32^n; seq(A009976(k), k=0..50); # Wesley Ivan Hurt, Nov 04 2013
MATHEMATICA
Table[32^n, {n, 0, 50}] (* Wesley Ivan Hurt, Nov 04 2013 *)
PROG
(Sage) [lucas_number1(n, 32, 0) for n in range(1, 17)]# - Zerinvary Lajos, Nov 07 2009
(Magma)[32^n: n in [0..100]] - Vincenzo Librandi, Nov 21 2010
(Maxima) A009976(n):=32^n$
makelist(A009976(n), n, 0, 30); /* Martin Ettl, Nov 07 2012 */
(PARI) a(n)=32^n \\ Charles R Greathouse IV, Sep 24 2015
(Python)
def A009976(n): return 1<<5*n # Chai Wah Wu, Nov 10 2022
CROSSREFS
Subsequence of A000079.
Sequence in context: A223566 A227593 A171306 * A144319 A041481 A158685
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 10 13:53 EDT 2024. Contains 372387 sequences. (Running on oeis4.)