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!)
A359456 Characteristic function of Fibonorial numbers. 4
1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 (list; constant; graph; refs; listen; history; text; internal format)
OFFSET
1
COMMENTS
Is this constant transcendental? The proof is probably very similar to the proof that Liouville's constant (A012245) is transcendental.
LINKS
EXAMPLE
.1100010000000000000000000000010000000000000...
PROG
(Python)
f0, f1, fibonorial = 1, 1, 1
for n in range(1, 88):
if n == fibonorial:
print("1", end = ", ")
f0, f1 = f0+f1, f0
fibonorial *= f0
else:
print("0", end = ", ")
(Python)
def A359456(n):
a, b, c = 1, 2, 1
while (c:=c*a) < n:
a, b = b, a+b
return int(c==n) # Chai Wah Wu, Jan 11 2023
CROSSREFS
Characteristic function of A003266.
Cf. A012245.
Sequence in context: A194677 A194667 A094875 * A012245 A256436 A253903
KEYWORD
nonn,cons,easy
AUTHOR
A.H.M. Smeets, Jan 02 2023
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 April 24 09:42 EDT 2024. Contains 371935 sequences. (Running on oeis4.)