(Translated by https://www.hiragana.jp/)
A356396 - 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!)
A356396 Nonnegative numbers k such that the negaFibonacci representation of -k (A215023(k)) is palindromic. 1
0, 2, 7, 20, 26, 44, 54, 73, 112, 143, 159, 196, 212, 264, 290, 350, 376, 426, 492, 518, 568, 675, 756, 798, 905, 986, 1028, 1125, 1167, 1280, 1361, 1403, 1500, 1542, 1683, 1751, 1908, 1976, 2107, 2290, 2358, 2515, 2583, 2714, 2887, 2955, 3086, 3275, 3343 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
See A094202 and A356395 for similar sequences.
LINKS
EXAMPLE
The first terms are:
n a(n) A215023(a(n))
-- ---- -------------
1 0 0
2 2 1001
3 7 100001
4 20 10000001
5 26 10100101
6 44 1001001001
7 54 1000000001
8 73 1010000101
9 112 100100001001
10 143 100000000001
PROG
(PARI) is(n) = { my (v=0, neg=0, pos=0, f); n=-n; for (e=0, oo, f=fibonacci(-1-e); if (f<0, neg+=f, pos+=f); if (neg <=n && n <= pos, while (n, if (f<0, neg-=f, pos-=f); if (neg > n || n > pos, v+=2^e; n-=f); f=fibonacci(-1-e--)); my (b=binary(v)); return (b==Vecrev(b)))) }
CROSSREFS
Sequence in context: A160677 A035402 A182655 * A136907 A259144 A090145
KEYWORD
nonn,base
AUTHOR
Rémy Sigrist, Aug 05 2022
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 August 13 18:29 EDT 2024. Contains 375144 sequences. (Running on oeis4.)