--- title: "Hailstone of 27+576460752303423488" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{Hailstone of 27+576460752303423488} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r, include = FALSE} knitr::opts_chunk$set( collapse = TRUE, comment = "#>" ) ``` ## Getting Started After following the ["Get Started + Install"](https://skenvy.github.io/Collatz/R/articles/collatz.html#install) guide; ```{r setup, message = FALSE} library(collatz) # Optionally library(gmp) ``` ## hailstone_sequence The hailstone sequence can run on `bigz`; ```{r} hailstone_sequence(27+as.bigz("576460752303423488")) ```