{"id":3964,"date":"2024-02-03T14:27:27","date_gmt":"2024-02-03T20:27:27","guid":{"rendered":"https:\/\/laurentlessard.com\/bookproofs\/?p=3964"},"modified":"2024-02-03T16:22:56","modified_gmt":"2024-02-03T22:22:56","slug":"how-many-times-can-you-add-up-the-digits","status":"publish","type":"post","link":"https:\/\/laurentlessard.com\/bookproofs\/how-many-times-can-you-add-up-the-digits\/","title":{"rendered":"How many times can you add up the digits?"},"content":{"rendered":"<body><p>This week\u2019s <a href=\"https:\/\/thefiddler.substack.com\/p\/how-many-times-can-you-add-up-the\">Fiddler<\/a> is a puzzle about adding digits over and over again.<\/p>\n<blockquote><p>\nFor any positive, base-10 integer $n$, define $f(n)$ as the number of times you have to add up its digits until you get a one-digit number. For example, $f(23) = 1$ because $2+3 = 5$, a one-digit number. Meanwhile, $f(888) = 2$, since $8+8+8 = 24$, a two-digit number, and then adding up those digits gives you $2+4 = 6$, a one-digit number. Find the smallest whole number $n$ such that $f(n) = 4$.<\/p>\n<p><em>Extra Credit:<\/em> For how many whole numbers $n$ between $1$ and $10,000$ does $f(n) = 3$?\n<\/p><\/blockquote>\n<p>My solution:<br>\n<a href=\"javascript:Solution('soln_adddigits','toggle_adddigits')\" id=\"toggle_adddigits\">[Show Solution]<\/a><\/p>\n<div id=\"soln_adddigits\" style=\"display: none\">\n<p>Let $a_n$ be the smallest integer $n$ such that $f(a_n) = n$. We can calculate the first few values manually.<\/p>\n<ul>\n<li> $a_1 = 10$. This must be the case since every one-digit number has $f(n)=0$, and $10$ is the smallest two-digit number and $f(10)=1$.\n<\/li><li> $a_2 = 19$. We seek the smallest number such that the sum of its digits needs to be summed once more to get to a one-digit number. In other words, we want the smallest number whose digits sum to $10$. This requires at least two digits and can be done in two ways ($19$ and $91$). Using more than two digits leads to larger numbers so we can exclude these possibilities.\n<\/li><li> $a_3 = 199$. Now, we seek the smallest number whose digits sum to $19$. This is impossible with two digits (smallest sum is $9+9=18$), so we try with three. This can be done with a $1$ as the first digit ($1+9+9$), so this must be the answer.\n<\/li><\/ul>\n<p>The pattern is now clear. For all $n\\geq 1$, $a_{n+1}$ is the smallest integer whose digits sum to $a_n$. Based on the pattern, let\u2019s suppose that<br>\n\\[<br>\na_n = 1\\,\\underbrace{9\\,9\\,\\cdots\\,9}_{k_n\\text{ times}}<br>\n\\qquad\\text{for }n=2,3,\\dots<br>\n\\]where $k_2=1$ and $k_3=2$. Now $a_{n+1}$ is the smallest number whose digits sum to $a_n$. How many digits must $a_n$ have? Rewrite $a_n$ in a particular way:<br>\n\\begin{align}<br>\na_n &amp;= 1\\,\\underbrace{9\\,9\\,\\cdots\\,9}_{k_n\\text{ times}}\\\\<br>\n&amp;= 2\\cdot 10^{k_n}-1 \\\\<br>\n&amp;= 2\\left( 10^{k_n}-1\\right)+1 \\\\<br>\n&amp;= 2\\cdot 9\\cdot \\left(  \\frac{10^{k_n}-1}{10-1}\\right)+1\\\\<br>\n&amp;= 2\\cdot 9\\cdot \\left( 1+10+10^2+\\cdots+10^{k_n-1}\\right) +1 \\\\<br>\n&amp;= 9 \\cdot \\bigl(\\, \\underbrace{2\\,2\\,\\cdots\\,2}_{k_n\\text{ times}}\\,\\bigr) + 1<br>\n\\end{align}where we used the formula for a <a href=\"https:\/\/en.wikipedia.org\/wiki\/Geometric_series#Sum\">finite geometric series<\/a> in the third step. Based on this representation, it is clear that $a_{n+1}$ requires more than $\\underbrace{2\\,2\\,\\cdots\\,2}_{k_n\\text{ times}}$ digits, since even if we made all the digits $9$ it would not be enough. W should add the extra $+1$ digit at the front of the number to get the smallest number possible. This leads to:<br>\n\\[<br>\na_{n+1} = 1\\underbrace{9\\,9\\,\\cdots\\,9}_{\\underbrace{2\\,2\\,\\cdots\\,2}_{k_n\\text{ times}}\\text{ times}}<br>\n\\]So $a_{n+1}$ is of the same form as $a_n$, and we find:<br>\n\\[<br>\nk_{n+1} = \\underbrace{2\\,2\\,\\cdots\\,2}_{k_n\\text{ times}}\\qquad\\text{for }k=2,3,\\dots.<br>\n\\]So although the sequence $f(n)$ seemed to grow at a moderate pace, for $n=0,1,2,3$, we find that<br>\n\\[<br>\nf(4) = 19,\\!999,\\!999,\\!999,\\!999,\\!999,\\!999,\\!999<br>\n\\]That escalated quickly!<\/p>\n<p>In general, we can write the full recursion as:<br>\n\\begin{align}<br>\na_1 &amp;= 10,\\\\<br>\na_2 &amp;= 19,\\\\<br>\na_{n+1} &amp;= 2\\cdot 10^{(a_n-1)\/9}-1\\qquad\\text{for }n=2,3,\\dots<br>\n\\end{align}<\/p>\n<h3>Extra credit<\/h3>\n<p>The most straightforward way to count how many $n$ between $1$ and $10,\\!000$ satisfy $f(n)=3$ is to write a short script. Here is a two-line script in Julia that does the job:<\/p>\n<pre>\r\nf(n) = n &lt; 10 ? 0 : 1 + f(sum(digits(n)))\r\nlength( [n for n in 1:10000 if f(n) == 3] )\r\n<\/pre>\n<p>and the answer is 945.\n<\/p><\/div>\n<\/body>","protected":false},"excerpt":{"rendered":"<p>This week\u2019s Fiddler is a puzzle about adding digits over and over again. For any positive, base-10 integer $n$, define $f(n)$ as the number of times you have to add up its digits until you get a one-digit number. For example, $f(23) = 1$ because $2+3 = 5$, a one-digit number. Meanwhile, $f(888) = 2$, &hellip; <a href=\"https:\/\/laurentlessard.com\/bookproofs\/how-many-times-can-you-add-up-the-digits\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;How many times can you add up the digits?&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[42],"tags":[37,43,17,15],"class_list":["post-3964","post","type-post","status-publish","format-standard","hentry","category-the-fiddler","tag-coding","tag-fiddler","tag-induction","tag-recursion"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"This week&#039;s Fiddler is a puzzle about adding digits over and over again. For any positive, base-10 integer $n$, define $f(n)$ as the number of times you have to add up its digits until you get a one-digit number. For example, $f(23) = 1$ because $2+3 = 5$, a one-digit number. Meanwhile, $f(888) = 2$,\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Laurent\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/laurentlessard.com\/bookproofs\/how-many-times-can-you-add-up-the-digits\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Book Proofs - A blog for mathematical riddles, puzzles, and elegant proofs\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"How many times can you add up the digits? - Book Proofs\" \/>\n\t\t<meta property=\"og:description\" content=\"This week&#039;s Fiddler is a puzzle about adding digits over and over again. For any positive, base-10 integer $n$, define $f(n)$ as the number of times you have to add up its digits until you get a one-digit number. For example, $f(23) = 1$ because $2+3 = 5$, a one-digit number. Meanwhile, $f(888) = 2$,\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/laurentlessard.com\/bookproofs\/how-many-times-can-you-add-up-the-digits\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-02-03T20:27:27+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-02-03T22:22:56+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How many times can you add up the digits? - Book Proofs\" \/>\n\t\t<meta name=\"twitter:description\" content=\"This week&#039;s Fiddler is a puzzle about adding digits over and over again. For any positive, base-10 integer $n$, define $f(n)$ as the number of times you have to add up its digits until you get a one-digit number. For example, $f(23) = 1$ because $2+3 = 5$, a one-digit number. Meanwhile, $f(888) = 2$,\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/how-many-times-can-you-add-up-the-digits\\\/#blogposting\",\"name\":\"How many times can you add up the digits? - Book Proofs\",\"headline\":\"How many times can you add up the digits?\",\"author\":{\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/author\\\/laurentlessard\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/#organization\"},\"datePublished\":\"2024-02-03T14:27:27-06:00\",\"dateModified\":\"2024-02-03T16:22:56-06:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/how-many-times-can-you-add-up-the-digits\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/how-many-times-can-you-add-up-the-digits\\\/#webpage\"},\"articleSection\":\"The Fiddler, coding, Fiddler, induction, recursion\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/how-many-times-can-you-add-up-the-digits\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/category\\\/the-fiddler\\\/#listItem\",\"name\":\"The Fiddler\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/category\\\/the-fiddler\\\/#listItem\",\"position\":2,\"name\":\"The Fiddler\",\"item\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/category\\\/the-fiddler\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/how-many-times-can-you-add-up-the-digits\\\/#listItem\",\"name\":\"How many times can you add up the digits?\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/how-many-times-can-you-add-up-the-digits\\\/#listItem\",\"position\":3,\"name\":\"How many times can you add up the digits?\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/category\\\/the-fiddler\\\/#listItem\",\"name\":\"The Fiddler\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/#organization\",\"name\":\"Book Proofs\",\"description\":\"A blog for mathematical riddles, puzzles, and elegant proofs\",\"url\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/author\\\/laurentlessard\\\/#author\",\"url\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/author\\\/laurentlessard\\\/\",\"name\":\"Laurent\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/how-many-times-can-you-add-up-the-digits\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1d179b3e810347763b0da7d94548624f7326a3b71d146194946bba92427ff8fb?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Laurent\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/how-many-times-can-you-add-up-the-digits\\\/#webpage\",\"url\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/how-many-times-can-you-add-up-the-digits\\\/\",\"name\":\"How many times can you add up the digits? - Book Proofs\",\"description\":\"This week's Fiddler is a puzzle about adding digits over and over again. For any positive, base-10 integer $n$, define $f(n)$ as the number of times you have to add up its digits until you get a one-digit number. For example, $f(23) = 1$ because $2+3 = 5$, a one-digit number. Meanwhile, $f(888) = 2$,\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/how-many-times-can-you-add-up-the-digits\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/author\\\/laurentlessard\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/author\\\/laurentlessard\\\/#author\"},\"datePublished\":\"2024-02-03T14:27:27-06:00\",\"dateModified\":\"2024-02-03T16:22:56-06:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/#website\",\"url\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/\",\"name\":\"Book Proofs\",\"description\":\"A blog for mathematical riddles, puzzles, and elegant proofs\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/laurentlessard.com\\\/bookproofs\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How many times can you add up the digits? - Book Proofs","description":"This week's Fiddler is a puzzle about adding digits over and over again. For any positive, base-10 integer $n$, define $f(n)$ as the number of times you have to add up its digits until you get a one-digit number. For example, $f(23) = 1$ because $2+3 = 5$, a one-digit number. Meanwhile, $f(888) = 2$,","canonical_url":"https:\/\/laurentlessard.com\/bookproofs\/how-many-times-can-you-add-up-the-digits\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/laurentlessard.com\/bookproofs\/how-many-times-can-you-add-up-the-digits\/#blogposting","name":"How many times can you add up the digits? - Book Proofs","headline":"How many times can you add up the digits?","author":{"@id":"https:\/\/laurentlessard.com\/bookproofs\/author\/laurentlessard\/#author"},"publisher":{"@id":"https:\/\/laurentlessard.com\/bookproofs\/#organization"},"datePublished":"2024-02-03T14:27:27-06:00","dateModified":"2024-02-03T16:22:56-06:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/laurentlessard.com\/bookproofs\/how-many-times-can-you-add-up-the-digits\/#webpage"},"isPartOf":{"@id":"https:\/\/laurentlessard.com\/bookproofs\/how-many-times-can-you-add-up-the-digits\/#webpage"},"articleSection":"The Fiddler, coding, Fiddler, induction, recursion"},{"@type":"BreadcrumbList","@id":"https:\/\/laurentlessard.com\/bookproofs\/how-many-times-can-you-add-up-the-digits\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/laurentlessard.com\/bookproofs#listItem","position":1,"name":"Home","item":"https:\/\/laurentlessard.com\/bookproofs","nextItem":{"@type":"ListItem","@id":"https:\/\/laurentlessard.com\/bookproofs\/category\/the-fiddler\/#listItem","name":"The Fiddler"}},{"@type":"ListItem","@id":"https:\/\/laurentlessard.com\/bookproofs\/category\/the-fiddler\/#listItem","position":2,"name":"The Fiddler","item":"https:\/\/laurentlessard.com\/bookproofs\/category\/the-fiddler\/","nextItem":{"@type":"ListItem","@id":"https:\/\/laurentlessard.com\/bookproofs\/how-many-times-can-you-add-up-the-digits\/#listItem","name":"How many times can you add up the digits?"},"previousItem":{"@type":"ListItem","@id":"https:\/\/laurentlessard.com\/bookproofs#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/laurentlessard.com\/bookproofs\/how-many-times-can-you-add-up-the-digits\/#listItem","position":3,"name":"How many times can you add up the digits?","previousItem":{"@type":"ListItem","@id":"https:\/\/laurentlessard.com\/bookproofs\/category\/the-fiddler\/#listItem","name":"The Fiddler"}}]},{"@type":"Organization","@id":"https:\/\/laurentlessard.com\/bookproofs\/#organization","name":"Book Proofs","description":"A blog for mathematical riddles, puzzles, and elegant proofs","url":"https:\/\/laurentlessard.com\/bookproofs\/"},{"@type":"Person","@id":"https:\/\/laurentlessard.com\/bookproofs\/author\/laurentlessard\/#author","url":"https:\/\/laurentlessard.com\/bookproofs\/author\/laurentlessard\/","name":"Laurent","image":{"@type":"ImageObject","@id":"https:\/\/laurentlessard.com\/bookproofs\/how-many-times-can-you-add-up-the-digits\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/1d179b3e810347763b0da7d94548624f7326a3b71d146194946bba92427ff8fb?s=96&d=mm&r=g","width":96,"height":96,"caption":"Laurent"}},{"@type":"WebPage","@id":"https:\/\/laurentlessard.com\/bookproofs\/how-many-times-can-you-add-up-the-digits\/#webpage","url":"https:\/\/laurentlessard.com\/bookproofs\/how-many-times-can-you-add-up-the-digits\/","name":"How many times can you add up the digits? - Book Proofs","description":"This week's Fiddler is a puzzle about adding digits over and over again. For any positive, base-10 integer $n$, define $f(n)$ as the number of times you have to add up its digits until you get a one-digit number. For example, $f(23) = 1$ because $2+3 = 5$, a one-digit number. Meanwhile, $f(888) = 2$,","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/laurentlessard.com\/bookproofs\/#website"},"breadcrumb":{"@id":"https:\/\/laurentlessard.com\/bookproofs\/how-many-times-can-you-add-up-the-digits\/#breadcrumblist"},"author":{"@id":"https:\/\/laurentlessard.com\/bookproofs\/author\/laurentlessard\/#author"},"creator":{"@id":"https:\/\/laurentlessard.com\/bookproofs\/author\/laurentlessard\/#author"},"datePublished":"2024-02-03T14:27:27-06:00","dateModified":"2024-02-03T16:22:56-06:00"},{"@type":"WebSite","@id":"https:\/\/laurentlessard.com\/bookproofs\/#website","url":"https:\/\/laurentlessard.com\/bookproofs\/","name":"Book Proofs","description":"A blog for mathematical riddles, puzzles, and elegant proofs","inLanguage":"en-US","publisher":{"@id":"https:\/\/laurentlessard.com\/bookproofs\/#organization"}}]},"og:locale":"en_US","og:site_name":"Book Proofs - A blog for mathematical riddles, puzzles, and elegant proofs","og:type":"article","og:title":"How many times can you add up the digits? - Book Proofs","og:description":"This week's Fiddler is a puzzle about adding digits over and over again. For any positive, base-10 integer $n$, define $f(n)$ as the number of times you have to add up its digits until you get a one-digit number. For example, $f(23) = 1$ because $2+3 = 5$, a one-digit number. Meanwhile, $f(888) = 2$,","og:url":"https:\/\/laurentlessard.com\/bookproofs\/how-many-times-can-you-add-up-the-digits\/","article:published_time":"2024-02-03T20:27:27+00:00","article:modified_time":"2024-02-03T22:22:56+00:00","twitter:card":"summary_large_image","twitter:title":"How many times can you add up the digits? - Book Proofs","twitter:description":"This week's Fiddler is a puzzle about adding digits over and over again. For any positive, base-10 integer $n$, define $f(n)$ as the number of times you have to add up its digits until you get a one-digit number. For example, $f(23) = 1$ because $2+3 = 5$, a one-digit number. Meanwhile, $f(888) = 2$,"},"aioseo_meta_data":{"post_id":"3964","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2024-06-01 20:14:02","updated":"2026-06-07 15:07:53","ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/laurentlessard.com\/bookproofs\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/laurentlessard.com\/bookproofs\/category\/the-fiddler\/\" title=\"The Fiddler\">The Fiddler<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow many times can you add up the digits?\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/laurentlessard.com\/bookproofs"},{"label":"The Fiddler","link":"https:\/\/laurentlessard.com\/bookproofs\/category\/the-fiddler\/"},{"label":"How many times can you add up the digits?","link":"https:\/\/laurentlessard.com\/bookproofs\/how-many-times-can-you-add-up-the-digits\/"}],"_links":{"self":[{"href":"https:\/\/laurentlessard.com\/bookproofs\/wp-json\/wp\/v2\/posts\/3964","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/laurentlessard.com\/bookproofs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/laurentlessard.com\/bookproofs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/laurentlessard.com\/bookproofs\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/laurentlessard.com\/bookproofs\/wp-json\/wp\/v2\/comments?post=3964"}],"version-history":[{"count":7,"href":"https:\/\/laurentlessard.com\/bookproofs\/wp-json\/wp\/v2\/posts\/3964\/revisions"}],"predecessor-version":[{"id":3975,"href":"https:\/\/laurentlessard.com\/bookproofs\/wp-json\/wp\/v2\/posts\/3964\/revisions\/3975"}],"wp:attachment":[{"href":"https:\/\/laurentlessard.com\/bookproofs\/wp-json\/wp\/v2\/media?parent=3964"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/laurentlessard.com\/bookproofs\/wp-json\/wp\/v2\/categories?post=3964"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/laurentlessard.com\/bookproofs\/wp-json\/wp\/v2\/tags?post=3964"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}