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!)
A226516 Number of (18,7)-reverse multiples with n digits. 4

%I #33 Jan 13 2023 09:34:51

%S 0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,2,1,2,1,2,2,3,3,4,4,6,5,8,6,10,8,13,

%T 11,17,15,23,20,31,26,41,34,54,45,71,60,94,80,125,106,166,140,220,185,

%U 291,245,385,325,510,431,676,571,896,756,1187,1001,1572,1326,2082,1757,2758,2328,3654,3084,4841,4085,6413

%N Number of (18,7)-reverse multiples with n digits.

%C Comment from _Emeric Deutsch_, Aug 21 2016 (Start):

%C Given an increasing sequence of positive integers S = {a0, a1, a2, ... }, let

%C F(x) = x^{a0} + x^{a1} + x^{a2} + ... .

%C Then the g. f. for the number of palindromic compositions of n with parts in S is (see Hoggatt and Bicknell, Fibonacci Quarterly, 13(4), 1975):

%C (1 + F(x))/(1 - F(x^2))

%C Playing with this, I have found easily that

%C 1. number of palindromic compositions of n into {3,4,5,...} = A226916(n+4);

%C 2. number of palindromic compositions of n into {1,4,7,10,13,...} = A226916(n+6);

%C 3. number of palindromic compositions of n into {1,4} = A226517(n+10);

%C 4. number of palindromic compositions of n into {1,5} = A226516(n+11).

%C (End)

%H Vincenzo Librandi, <a href="/A226516/b226516.txt">Table of n, a(n) for n = 0..1000</a>

%H V. E. Hogatt, M. Bicknell, <a href="https://fq.math.ca/13-4.html">Palindromic Compositions</a>, Fib. Quart. 13(4) (1975) 350-356

%H N. J. A. Sloane, <a href="http://arxiv.org/abs/1307.0453">2178 And All That</a>, Fib. Quart., 52 (2014), 99-120.

%H <a href="/index/Rec#order_10">Index entries for linear recurrences with constant coefficients</a>, signature (0,1,0,0,0,0,0,0,0,1).

%F G.f.: x^6*(1+x)*(1-x+x^5)/(1-x^2-x^10).

%F a(n) = a(n-2) + a(n-10) for n>12, with initial values a(0)-a(12) equal to 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1. [_Bruno Berselli_, Jun 17 2013]

%F a(2n+1) = A003520(n-5). a(2n) = A098523(n-6). - _R. J. Mathar_, Dec 13 2022

%p f:=proc(n) option remember;

%p if

%p n <= 5 then 0

%p elif n=6 then 1

%p elif n <= 10 then 0

%p elif n <= 12 then 1

%p else f(n-2)+f(n-10)

%p fi;

%p end;

%p [seq(f(n),n=0..100)]

%t CoefficientList[Series[x^6 (1 - x^2 + x^5 + x^6) / (1 - x^2 - x^10), {x, 0, 80}], x] (* _Vincenzo Librandi_, Jun 18 2013 *)

%t LinearRecurrence[{0,1,0,0,0,0,0,0,0,1},{0,0,0,0,0,0,1,0,0,0,0,1,1},80] (* _Harvey P. Dale_, Jun 17 2015 *)

%Y Cf. A214927, A226517, A226916.

%K nonn,easy,base

%O 0,17

%A _N. J. A. Sloane_, Jun 16 2013

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 24 03:08 EDT 2024. Contains 371918 sequences. (Running on oeis4.)