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!)
A126492 Number of base 24 n-digit numbers with adjacent digits differing by three or less. 3
1, 24, 156, 1036, 6932, 46592, 314068, 2121404, 14350760, 97189500, 658783572, 4468484736, 30325445672, 205889162656, 1398299571460, 9498979946468, 64541625486340, 438601729211104, 2980942930020288, 20261817487044168 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
[Empirical] a(base,n)=a(base-1,n)+7^(n-1) for base>=3n-2; a(base,n)=a(base-1,n)+7^(n-1)-2 when base=3n-3
LINKS
FORMULA
G.f.: -(36*x^11 -104*x^10 -272*x^9 +557*x^8 +624*x^7 -998*x^6 -524*x^5 +660*x^4 +134*x^3 -127*x^2 +10*x +1) / (12*x^11 -40*x^10 -80*x^9 +223*x^8 +156*x^7 -410*x^6 -88*x^5 +276*x^4 -10*x^3 -53*x^2 +14*x -1). - Alois P. Heinz, Sep 25 2015
MAPLE
b:= proc(n, i) option remember; `if`(n=0, 1, add(
`if`(i=0 or abs(i-j)<4, b(n-1, j), 0), j=1..24))
end:
a:= n-> b(n, 0):
seq(a(n), n=0..20); # Alois P. Heinz, Sep 25 2015
PROG
(S/R) stvar $[N]:(0..M-1) init $[]:=0 asgn $[]->{*} kill +[i in 0..N-2](($[i]`-$[i+1]`>3)+($[i+1]`-$[i]`>3))
CROSSREFS
Cf. Base 24 differing by two or less A126411, one or less A126378.
Sequence in context: A008663 A277984 A125334 * A222002 A240268 A231341
KEYWORD
nonn,base
AUTHOR
R. H. Hardin, Dec 27 2006
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 March 19 06:25 EDT 2024. Contains 370953 sequences. (Running on oeis4.)