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!)
A252697 Number of strings of length n over a 4-letter alphabet that do not begin with a palindrome. 9
0, 4, 12, 36, 132, 492, 1932, 7596, 30252, 120516, 481572, 1924356, 7695492, 30774372, 123089892, 492329316, 1969287012, 7877027532, 31507989612, 126031476876, 504125425932, 2016499779372, 8065997193132, 32263981077036, 129055916612652, 516223635676236 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
4 divides a(n) for all n.
lim n -> infinity a(n)/4^n ~ 0.458498674725575 is the probability that a random, infinite string over a 4-letter alphabet does not begin with a palindrome.
This sequence gives the number of walks on K_4 with loops that do not begin with a palindromic sequence.
LINKS
FORMULA
a(n) = 4^n - A249629(n) for n > 0.
EXAMPLE
For n = 3, the first 10 of the a(3) = 36 solutions are (in lexicographic order) 011, 012, 013, 021, 022, 023, 031, 032, 033, 100.
PROG
(Ruby) seq = [1, 0]; (2..N).each { |i| seq << 4 * seq[i-1] + 4**((i+1)/2) - seq[(i+1)/2] }; seq = seq.each_with_index.collect { |a, i| 4**i - a }
CROSSREFS
A249629 gives the number of strings of length n over a 4-letter alphabet that DO begin with a palindrome.
Analogous sequences for k-letter alphabets: A252696 (k=3), A252698 (k=5), A252699 (k=6), A252700 (k=7), A252701 (k=8), A252702 (k=9), A252703 (k=10).
Sequence in context: A231179 A331717 A192010 * A056383 A293857 A052643
KEYWORD
easy,nonn,walk
AUTHOR
Peter Kagey, Dec 20 2014
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 17 10:20 EDT 2024. Contains 372594 sequences. (Running on oeis4.)